body {
    background-color: #2D3436;
    background-image: url("./assets/background.png");
    margin: 0;
    margin-top: 4rem;
    font-family: Helvetica, sans-serif;
    overflow: visible;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-container {
    position: absolute;
}

.footer-blurb-container {
    position: relative;
}

.downloads-container {
    display: flex;
    justify-content: center;
    /* margin-top: 18rem;
    margin-bottom: 18.3rem; */
}

.downloads-box {
    background-color: #DDDDDD;
    padding: 1.5rem;
    border-radius: 10px;
    /* margin-top: 13.2rem;
    margin-bottom: 14.5rem; */

    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.493);
}

@media only screen and (max-height: 747px) {
    /* .downloads-box {
        margin-top: 12rem;
        margin-bottom: 2rem;
    } */
}

.downloads-header {
    font-weight: normal;
    border-bottom: 1px solid black;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    font-size: x-large;
}

.downloads-btn {
    background-color: #2196F3;
    outline: none;
    border-radius: 25px;
    border: none;
    color: white;
    font-size: large;
    padding: 12px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    margin-top: 12px;
}

.downloads-btn:hover {
    background-color: #1b7bca;
}

.wrong-device {
    display: none;
}

@media only screen and (max-width: 1279px) {
    .wrong-device {
        display: flex;
        /* padding: 1rem; */
        color: red;
        font-size: large;
        text-align: center;
    }

    .downloads-box p, .downloads-btn {
        display: none;
    }
}

@media only screen and (max-height: 412px) {
    .downloads-container {
        margin-top: 1rem;
        margin-bottom: .5rem;
    }

    body {
        height: fit-content;
    }
}

/* @media only screen and (max-height: 668px) {
    .footer-container {
        position: static;
    }

    .footer-blurb-container {
        position: static;
    }
} */

/* download thanks */

.download-success-container {
    width: 100%;
    min-height: 100vh;
    z-index: 2;
    display: flex;
    flex-direction: column;
    background: #5d6e72af;
    overflow-y: hidden;
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    transition: all .3s ease-in-out;
    transform: translateY(-100%);
}

.download-success-container.open {
    transform: translateY(0);
}

@keyframes success {
    from {
        transform: translateY(-100%);
        transition: all .4s ease-in-out;
    }

    to {
        transform: translateY(0);
        transition: all .4s ease-in-out;
    }
}

.download-success-container.close {
    animation: backwards;
}

.download-instructions {
    background: #DDDDDD;
    border-radius: 10px;
    align-items: center;
    flex-direction: column;
    display: flex;
    padding: 1rem;
    margin-top: 1rem;
    box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.493);
}

.download-instructions p {
    text-align: center;
    border-bottom: 1px solid black;
    width: fit-content;
    padding-bottom: 1rem;
    font-weight: bold;
    font-size: large;
    margin: 0;
}

.download-success-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #DDDDDD;
    border-radius: 10px;
    padding: 2rem;
    box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.493);
}

.download-success-box h1 {
    border-bottom: 1px solid black;
    padding-bottom: 1rem;
    font-weight: normal;
}

.download-success-box h2 {
    font-weight: normal;
}

.download-success-box h3 {
    font-weight: normal;
    font-size: small;
}

.download-success-box a {
    text-decoration: underline;
    color: #1b7bca;
    cursor: pointer;
}

.download-success-box a:hover {
    color: #2196F3;
}

/* .download-success-box a {
    color: white;
    text-decoration: none;
    background: #2196F3;
    border-radius: 30px;
    padding: 1rem;
    transition: all .3s ease-in-out;
}

.download-success-box a:hover {
    background: #1b7bca;

} */
