@import url('https://fonts.googleapis.com/css2?family=Your+Beautiful+Font&display=swap');

.container{
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

body{
    margin: 0;
    background-color: black;
    font-family: 'Your Beautiful Font', sans-serif;
}

h1{
    color: white;
    margin: 0;
    font-size: 3rem;
    font-weight: 800;
}

.img-bg{
    z-index: 0;
    position: absolute;
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    opacity: 50%;
}

.button-join{
    font-size: 2rem;
    color: white;
    background-color: black;
    border: 1px solid white;
    border-radius: 32px;
    padding: 8px 24px;
    cursor: pointer;
}

.ca {
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
}

.social a{
    cursor: pointer;
}

@media (max-width: 768px) {
    .container > img {
        width: 300px !important;
    }
    h1{
        font-size: 1.8rem;
    }
    .ca{
        font-size: 0.8rem;
    }
    .button-join{
        font-size: 1.5rem;
    }
}