@font-face {
    font-family: 'FutoSans';
    src: url('./fonts/FutoSans-Regular.woff2') format('woff2'),
        url('./fonts/FutoSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
    text-align: center;
    color: white;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background: url('./img/background.jpg') no-repeat center center/cover;
}

header {
    padding: 50px 0px 25px 0px !important;
    background: #000000 !important;
    width: 100% !important;
}
header h1 {
    font-size: 48px !important;
    font-weight: 400 !important;
    font-family: 'FutoSans' !important;
    line-height: 1em;
    padding: 0;
    margin: 0;
    letter-spacing: 2px;
}

.content {
    font-size: 20px;
}

.join-btn {
    background-color: #1e363a;
    color: #fff;
    padding: 8px 12px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: 'FutoSans';
    text-decoration: none !important;
}

.join-btn:hover {
    background-color: #4e6764 ;
}

footer {
    padding: 10px !important;
    background: #000 !important;
    width: 100% !important;
    font-family: 'FutoSans' !important;
    position: absolute;
    bottom: 5%;
}
footer p {
    font-size: 20px !important;
    font-weight: 200;
    margin-bottom: 38px;
    letter-spacing: 2px;
}

@media (max-width: 1500px) {
  
    footer {
        bottom: 8%;
    }

}

@media (max-width: 1450px) {
  
    header {
        padding: 55px 0px 30px 0px !important;
    }
}

@media (max-width: 1380px) {
    header {
        padding: 64px 0px 15px 0px !important;
    }
}


@media (max-width: 768px) {
        header {
        padding: 70px 0px 0px 0px !important;
    }
    header h1 {
        font-size: 32px !important;
    }
    footer p {
        font-size: 16px !important;
    }
}