/* Universal Page Settings */
* {
    font-family: "Open Sans", Helvetica, sans-serif;
    margin: 0;
}
[id] {
    scroll-margin-top: 8em;
}
header {
    background-color: #a1a1a1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:sticky;
    top: 0;
}
.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    list-style-type: none;
    margin-right: 1em;
    margin-left: 1em;
    padding: 0;
    overflow: hidden;
}  
li a {
    display: block;
    color:#111;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: 500;
}
li a:hover {
    background-color: #d500f9;
    color: #e4e6eb;
    border-radius: .15em;
}
body {
    background-color: #18191a;
}
.home-top {
    display: flex;
    margin-inline: 1em;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.dashboard-clip {
    border-style: solid;
    border-width: .25em;
    border-color: #d500f9;
    border-radius: .15em;
    width: 20vw;
}
#device-photo {
    border-style: solid;
    border-width: .25em;
    border-color: #d500f9;
    border-radius: .15em;
    width: 20vw;
}
.haiku {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    color:#e4e6eb;
    font-size: 3vw;
    /* height: 61vh; */
    text-align: center;
}
.haiku-line {
    margin: 3vw;
}
button {
    font-size: 1.7rem;
    color:#111;
    background-color:#a1a1a1;
    border-color: #d500f9;
    border-style: solid;
    border-width: .2em;
    border-radius: .15em;
    padding-block: .5em;
    padding-inline: 1em;
}
.atsign {
    color: #d500f9;
}
.actions {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 25vh;
    width: 100%;
}
.home-middle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.actions-group {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items:center;
    margin-block: 3em;
}
.actions-text {
    font-size: 1.7vw;
    color:#111;
    background-color:#a1a1a1;
    border-color:#111;
    border-style: solid;
    border-width: .2em;
    border-radius: .15em;
    outline-style: solid;
    outline-color: #d500f9;
    outline-width: .2em;
    width: 35vw;
    padding: .5em;
    text-align: center;
}
.home-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-block: 1em;
}
.dashboard-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3em;
}
/* .button-row {
    display: flex;
    justify-content: center;
    height: 8vh;
    margin-bottom: 1em;
}
.contact-button {
    font-size: 1.4em;
    color:#111;
    background-color:#a1a1a1;
    border-color: #d500f9;
    border-style: solid;
    border-width: .2em;
    border-radius: .15em;
    padding-block: 0em;
    padding-inline: 1em;
    width: 200px;
}
.contact-button:hover {
    color: #e4e6eb;
    background-color: #d500f9;
    border-color:#e4e6eb;
    cursor: pointer;
} */
@media screen and (max-width: 800px) {
    header {
        flex-direction: column;
    }
    .header-logo {
        width: 100vw;
    }
    .menu {
        justify-content: center;
    }
    .home-top, .actions-group {
        flex-direction: column;
    }
    .haiku {
        height: auto;
        margin-top: .5em;
        margin-bottom: .5em;
        font-size: 2rem;
    }
    #device-photo {
        width: 60vw;
        margin-bottom: 0em;
        margin-top: 2em;
    }
    .dashboard-clip {
        width: 60vw;
        margin-bottom: 2em;
    }
    .haiku-line {
        margin: .4em;
    }
    .actions {
        display: none;
    }
    .home-middle {
        /* height: 75vh; */
        height: auto;
    }
    .actions-logo {
        display: none;
        padding: .5em;
    }
    .actions-pic {
        order: 1;
        padding: .5em;
        justify-content: center;
    }
    #action-group-1 {
        order: 2;
        /* height: 30vh; */
        height: auto;
        margin-bottom: -3em;
    }
    #action-group-2 {
        order: 3;
        /* height: 30vh; */
        height: auto;
    }
    /* .actions {   
        flex-direction: column;
        flex-wrap: nowrap;
        height: 85vh;
        height: auto;
    }
    .actions-logo {
        margin-bottom: 1.5em;
    } */
    .actions-text {
        font-size: 6vw;
        width: 80vw;
        margin: 0.5em;
    }
    .dashboard-image {
        height: auto;
        margin-top: .3em;
        margin-bottom: 2em;
        width: 75%;
    }
    /* .contact-button {
        padding-inline: 1.5em;
    } */
}
@media screen and (max-width: 1000px) {
    #sample-dashboard {
        width: 100%;
        height: auto;
    }
}