@charset "UTF-8";

* {
    margin: 0px;
    padding: 0px;
    font-family: Calibri;
}

header {
    background-color: #2d3d7d;
    color: #fff;
    height: 20vh;
}

#header-first-section,
#header-second-section  {
    display: flex;
    align-items: center;
    height: 10vh;
    padding: 10px;
}

#header-first-section p {
    display: inline-block;
    margin-right: 15px;
}

#header-second-section {
    background-color: #fff;
    color: #000;
    box-shadow: 0px 10px 10px #0000002f;
}

#sidebar {
    display: none;
}

main {
    margin-top: 50px;
    padding: 10px;
}

main h1 {
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 20px;
}

main hr {
    margin-bottom: 20px;
}

#arrow {
    display: none;
}

#down-arrow {
    display: none;
}

#subtitle-section {
    border: 1px solid #757272;
    padding: 10px;
    font-size: 10px;
}

#instructions-section {
    border: 1px solid #757272;
    border-top: 0px;
    padding: 10px;
}

ol li {
    margin-left: 20px;
    margin-bottom: 20px;
}

ul li {
    margin-left: 50px;
    list-style-type: disc;
}

#instructions-section p {
    margin-top: 5px;
    margin-bottom: 20px;
}

#instructions-section a {
    text-decoration: none;
    color: #000;
}

#instructions-section a:hover {
    color: #2d3d7d;
}

#last-p {
    margin-left: 35px;
}

#main-success-section {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
}

#main-last-section {
    text-align: center;
    margin-top: 20px;
}

#main-last-section button {
    padding: 10px 15px;
    cursor: pointer;
    background-color: #2d3d7d;
    color: #fff;
    border: none;
    border-radius: 5px;
    border: 1px solid #2d3d7d;
    box-shadow: 5px 5px 10px #2d3d7d88;
}

#main-last-section button:hover {
    background-color: #fff;
    color: #2d3d7d;
    font-weight: bold;
    transition: all 0.3s ease;
}

footer {
    text-align: center;
    background-color: rgb(56, 54, 54);
    color: #fff;
    padding: 10px;
    margin-top: 10px;
}

@media screen and (min-width: 800px) {
    body {
        padding-left: 200px;
    }

    header {
        height: 10vh;
    }

    #header-first-section {
        border-left: 1px solid #fff;
    }

    #header-first-section,
    #header-second-section {
        height: 5vh;
    }

    #sidebar {
        display: block;
        text-align: center;
        background-color: #2d3d7d;
        color: #fff;
        position: fixed;
        left: 0;
        bottom: 0;
        top: 0;
        width: 200px;
    }

    #first-div {
        padding: 10px;
        height: 13.2vh;
        display: flex;
        align-items: center;
    }

    #paragraph {
        border: 2px solid #fff;
        padding: 0px 6px;
        border-radius: 2px;
    }

    #paragraph2 {
        text-decoration: underline;
    }

    #first-div p {
        display: inline-block;
    }

    #second-div {
        background-color: rgb(56, 54, 54);
        height: 100vh;
    }

    #subtitle-section {
        display: grid;
        grid-template-columns: 20px 1fr;
        align-items: center;
    }

    #arrow {
        display: block;
        cursor: pointer;
    }

    .hide-content {
        display: none;
    }

    .footer {
        margin-top: 90vh;
    }
}
