:root {
    --blue: #1e90ff;
    --white: #ffffff;
    --black: black;
    --ltgray: lightgray;
    --gray: gray;
    --dkgray: darkgray;
    --menu: white;
    --lightblue: lightskyblue;
    --menudd: rgba(206, 201, 201, 0.1);
    --footer: rgb(53, 53, 63);
    --caption: rgb(91, 59, 163); 
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header {
    background-color: var(--white);
    height: 220px;
    padding: 0px;
}

header #apstarlogo {
    width: 160px;
    margin: 5px 0px 10px 20px;
}

header a {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    display: block;
}

/* Features */

.features {
    background: var(--white);
    color: var(--gray);
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.features div {
    font-size: small;
    margin: 1%;
    padding: 1px;
    background: var(--white);
}

/* footer */

footer {
    background: var(--footer);
    color: var(--white);
    font-size: 12px;
    padding: 20px 20px;
    text-align: center;
    text-transform: capitalize;
}

.infomain {
    width: 70%;
    color: var(--black);
}

.inforight {
    width: 25%;
    color: var(--black);
    float: right;
}

.features figure img {
    border: 1px solid var(--white);
    border-radius: 15%;
    box-shadow: var(--gray) 0 0 10px;
    width: 100%;
}

.features .smallradius {
    border-radius: 2%;
}

figcaption {
    font-size: x-small;
    color: var(--caption);
}

questioncaption {
    font-size: medium;
    color: var(--blue);
}

#menu {
    width: 100%;
    background: var(--menu);
    overflow: hidden;
}

#menu a {
    display: block;
    float: left;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    color: var(--black);
    border-right: solid 1px #397F63;
}

#menu a:hover {
    color: var(--lightblue);
    text-decoration: none;
    text-transform: lowercase;
    transition: 500ms;
}

input[type=checkbox] {
    display: none;
}

/*When the "checkbox" is checked, show the dropdown menu */

input[type=checkbox]:checked~#menu {
    display: block;
}

/* The top bar that shows the hamburger icon on small screens */

.hamburger {
    text-decoration: none;
    color: #000;
    background: var(--menu);
    padding: 4px 0 0 10px;
    display: none;
}

/* Just the hamburger image */

#burger {
    height: 36px;
    padding-top: 4px;
}

/* RESPONSIVE RULES */

@media screen and (min-width: 716px) {
    header {
        background-color: var(--menu);
        height: 220px;
        background-position: 20px 70px;
        background-size: 160px;
    }
    .features figure img {
        box-shadow: var(--gray) 0 0 5px;
        width: 400px;
    }
}

@media screen and (max-width: 715px) {
    header {
        background-color: var(--menu);
        height: 120px;
        background-position: 20px 70px;
        background-size: 160px;
    }
    .features figure img {
        box-shadow: var(--gray) 0 0 5px;
        width: 200px;
    }
    #menu {
        position: absolute;
        display: none;
    }
    /* The top bar that shows the hamburger icon */
    .hamburger {
        display: block;
        border-bottom: solid 1px #5F7F72;
        width: 100%;
    }
    /* Each link in the dropdown menu */
    #menu a {
        display: block;
        float: none;
        padding: 10px 0 10px 10px;
        text-align: center;
        background: var(--menudd);
        text-decoration: none;
        color: var(--black);
        border-bottom: solid 1px #5F7F72;
        border-right: none;
    }
}

@media screen and (max-width: 470px) {
    header {
        background-color: var(--menu);
        height: 170px;
    }
    header #apstarlogo {
        width: 110px;
        margin: 10px 0px 10px 20px;
    }
    .features div {
        width: 95%;
        margin: 1%;
        padding: 1px;
    }
    .features figure {
        display: none;
    }
}