@font-face {
    font-family: 'HelveticaNowDisplay';
    src: url('../fonts/HelveticaNowDisplay-Bold.woff2') format('woff2'),
        url('../fonts/HelveticaNowDisplay-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    max-width: 100vw;
    min-height: 100vh;
    background-image: url('../img/BG.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.container {
    max-width: 80%;
    margin: auto;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    background-position: bottom -100px center;
    background-size: 80vh;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

.logo {
    filter: drop-shadow(10px 0px 10px #000000);
    margin-top: 5vh;
    width: 30vw;
}

.date {
    width: 600px;
}

.button-bg {
    margin-top: 100px;
    width: 500px;
    height: 70px;
    background-image: url(../img/Button.png);
    background-size: cover;
    background-position: center center;
    filter: drop-shadow(10px 0px 10px #000000);
}

.instagram-icon {
    margin-top: 20px;
    background-image: url(../img/instagram.png);
    background-size: cover;
    width: 60px;
    height: 60px;
}

@media only screen and (max-width: 1400px) {
    .logo {
        width: 60vw;
    }
  }

@media only screen and (max-width: 1250px) {
    .logo {
        width: 60vw;
    }
  }

@media only screen and (max-width: 600px) {
    .logo {
        width: 70vw;
    }

    .button-bg {
        width: 300px;
        height: 40px;
    }

    .date {
        width: 300px;
    }

  }