@font-face {
    font-family: Cinema;
    font-style: normal;
    font-weight: normal;
    src: url("Cinema.ttf");
}

html, body {
    height: 100%;
    width: 100%;
    font-family: Cinema;
    overflow: hidden;
}

body {
    background: url("background-mobile.png") no-repeat center center, linear-gradient(#0B1731, #061127);
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
}

a {
    color: white;
    text-align: center;
}

.logo {
    width: 100%;
    max-width: 550px;
}

.instagram {
    height: 100px;
    width: 200px;
    margin-top: 100px;
}

@media (min-width: 576px) {
    body {
        background: url("background.png") no-repeat center center, linear-gradient(#0B1731, #0D1B34);
        background-size: contain;
    }
}