#container {
    background-image: url("/static/common/img/get-started-hero.4980e2544f8e.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

#start ul {
    line-height: 1.5;
    list-style: none;
    text-align: left;
}

#start h2 {
    font-size: 1.2em;
    margin-top: 4%;
    text-align: left;
}

#start {
    border: 1px solid #bdbdbd;
    background-color: rgba(255, 255, 255, 0.8);
    width: 55%;
    height: auto;
    color: black;
    text-align: center;
    padding-left: 5%;
    padding-right: 5%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    margin-top: 8%;
    margin-bottom: 8%;
}

#start h1 {
    border-bottom: 3px solid #F69318;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 35px;
    text-align: center !important;
    font-size: 2.2em;
    padding-top: 8px;
}

#start p {
    font-size: 1.1em;
    text-align: left !important;
}

#buttons a {
    cursor: pointer;
    border: 2px solid #006A66;
    background-color: #006A66;
    padding: 15px 20px;
    margin-top: 18px;
    font-weight: bold;
    font-size: 1.2em;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

#buttons a:hover, #buttons a:focus {
    background: transparent;
    color: black;
    transition: 0.5s;
}

#buttons a:focus:not(:focus-visible) {
    background: #006A66;
    color: white;
}

#guideButton {
    cursor: pointer;
    border: 3px solid;
    background: transparent;
    padding: 20px 35px;
    margin-top: 18px;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

#guideButton:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

button:focus {
    outline: 0;
}

.main-content {
    margin-left: 0;
    margin-right: 0;
}

#buttons {
    display: grid;
    justify-content: center;
    padding-bottom: 10%;

}

#guide-link {
    text-align: left;
    margin-top: 15px;
}

#guide-link a {
    color: #006A66;
    font-weight: bold;
}

#guide-link a:focus {
    outline: 2px solid;
}

/* Media Queries */

/* Laptop */
@media screen and (max-width: 1024px) {
    #start {
        border: 1px solid #bdbdbd;
        background-color: rgba(255, 255, 255, 0.8);
        color: black;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    }

    #start h1 {
        border-bottom: 3px solid #F69318;
        padding-bottom: 8px;
        margin-bottom: 35px;
        text-align: center;
        font-size: 1.8em;
        padding-top: 8px;
    }

    #start p {
        font-size: 1em;
    }

    #guideButton {
        padding: 10px 25px;
        margin-top: 18px;
        font-size: 1.1em;
    }

    #registerButton {
        padding: 10px 25px;
        margin-top: 18px;
        font-size: 1.1em;
    }
}


@media screen and (max-width: 1024px) {
    #registerButton {
        white-space: nowrap;
    }

    #start h2 {
        font-size: 1.2em;
        margin-top: 6%;
    }
}

/* large mobile */
@media screen and (max-width: 600px) {

    #guideButton {
        white-space: normal;
    }
}

/* Mobile In-between */
@media screen and (max-width: 500px) {
    #start {
        width: 320px;
        margin-top: 15%;
        margin-bottom: 15%;

    }

    #start h2 {
        margin-top: 12%;
    }

    #start h1 {
        font-size: 1.6em;

    }

    #start p {
    }

    #guideButton {
        margin-top: 40px;
        font-size: 1em;
    }

    #registerButton {
        margin-top: 25px;
        font-size: 1em;

    }

    #buttons {
        padding-bottom: 15%;
    }
}

/* Mobile medium */
@media screen and (max-width: 375px) {
    #start {
        width: 300px;
    }

    #guideButton {
        margin-top: 10px;
        font-size: 1em;
        padding-left: 35px;
        padding-right: 28px;
        white-space: nowrap;
    }

    #registerButton {
        margin-top: 10px;
        font-size: 1em;
    }
}

/* Mobile Small */
@media screen and (max-width: 340px) {
    #start {
        width: 245px;
    }

    #start h1 {
        font-size: 1.4em;
    }

    #start p {
    }

    #registerButton {
        margin-top: 2px;
    }

    #guideButton {
        padding: 10px 23px;
    }
}