body
{
    background-color: #83AF9E;
}

p
{
    font-family: 'Poppins', sans-serif;
    color: white;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

.titlecont
{
    display: block;
    margin: 0 auto;
    max-height: 10vh;
}
.titlecont img
{
    max-height: 12vh;
    display: block;
    margin: 0 auto;
}
.btncont
{
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
}

.appbtn
{
    aspect-ratio: 21/9;
    /* Fallback */
    @supports not (aspect-ratio: 21 / 9) 
    {
        &::before {
        float: left;
        padding-top: 42.85%;
        content: "";
        }

        &::after {
        display: block;
        content: "";
        clear: both;
        }
    }
    /**/
    padding: 5px 0;
    background-color: white;
    border: none;
    border-radius: 5px;
    margin: 10px 10px;
    max-height: 200px;
}

.appbtn img
{
    display: block;
    margin: 0 auto;
    width: 100%;
}

footer
{
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: white;
    width: 100%;
    padding: 10px 0;
}

footer img
{
    display: block;
    margin: 0 auto;
}

@media (min-aspect-ratio: 1)
{
    .btncont
    {
        text-align: center;
    }
    .appbtn
    {
        max-width: 40%;
        display: inline-block;
    }
    .appbtn:hover
    {
        box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    }
}
@media (max-aspect-ratio: 1)
{
    .appbtn
    {
        width: 90%;
        display: block;
        margin: 10px auto;
    }
}