html, body {
    background-color: #000000;
    color: #FFFFFF;

}
html * {
    box-sizing: border-box;
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-variation-settings:
            "wdth" 100,
            "YTLC" 500;
}
.lp {
    display: flex;
    /*padding: 30px 0 160px 0;*/
    flex-direction: column;
    justify-content: center;
    align-content: center;
    height: 100vh;
}

.logo {
    width: 90%;
    height: auto;
}

.buttons {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.cta {
    display: inline-block;
    font-size: 25px;
    font-weight: 500;
    text-transform: uppercase;
    font-style: normal;
    color: #ffffff;
    background-color: #b5bd00;

    margin: 15px 0;
    padding: 10px 20px;
    /*border-radius: 5px;*/


    text-decoration: none;
    text-align: center;

    min-width: auto;
    width: 80%;

    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    transition: all 0.35s;
}
.cta:hover {
    opacity: 0.85;
}

/*// X-Small devices (portrait phones, less than 576px)*/
/*// No media query for `xs` since this is the default in Bootstrap*/

/*// Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    .cta {
        font-size: 30px;
        padding: 10px 25px;
        min-width: 350px;
        max-width: 45%;
    }
    .buttons {

        margin-top: 40px;
        align-items: center;
        justify-content: center;
    }

    .cta {
        margin: 10px 0;
    }

    .logo {
        width: 85%;
    }
}

/*// Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .cta {
        font-size: 30px;
        padding: 10px 25px;
        min-width: 300px;
    }
    .buttons {
        flex-direction: row;
        justify-content: space-evenly;
        margin-top: 60px;
    }
    .cta {
        margin: 0;
    }
    .logo {
        width: 60%;
    }
}

/*// Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .cta {
        font-size: 30px;
        padding: 10px 25px;
        max-width: 350px;
    }
    .buttons {
        margin-top: 100px;
    }
}

/*// X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    .cta {
        max-width: 350px;
    }
}

/*// XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {
    .cta {
        font-size: 35px;
        padding: 15px 30px;
        max-width: 400px;
    }
}


