html {
    background-image: url("./images/bg.jpg");
    background-color: #00000085;
    background-blend-mode:multiply;

    font-family: "Quicksand", sans-serif;
    font-weight:600;

    overscroll-behavior: none;
}

body {
    
    height: 100%;
    width: 960px;
    margin: 0 auto;

    background-color: #1D1C4E;
    color: white;

}

main {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    padding-bottom: 30px;
}

main img {
    max-width: 100;
    height: auto;
    margin: 30px auto;
}

main iframe {
    width: 90%;
    aspect-ratio: 16/9;
    height:auto;
    margin: 30px auto;
}

main p {
    margin: 30px auto;
}

a {
    color: white;
}

.devs {
    background-color: #A6CBF2;
    
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    color: #414141;

    padding-top: 30px;
}

.devs_columns {
    display: flex;
    flex-direction: row;
}

.dev_profile {
    padding: 0px 30px 30px;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
}

.fine_print {
    text-align: center;
}

.socials img {
    margin: 10px;
}

.policy {
    text-align: left;
    padding: 50px;
}

.policy h2 {
    margin-top: 60px;
}

@media screen and (max-width: 959px) {
    body {
        width: 100%;
    }

    main p {
        padding: 0px 50px;
    }

    .dev_profile p {
        padding: 0px 50px;
    }

    img {
        max-width: 75vw;
    }

    .devs_columns {
        flex-direction: column;
    }

    footer {
        flex-direction: column;
    }
}