*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html{
    height: 100%;
    width: 100%;
    background-color: black;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}
.image-background{
    position: relative;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    background-image: url(../assets/background\ site\ 1.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    z-index: 1;
    display: flex;
}
.content-overlay{
    width: 100%;
    min-height: 100vh;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.spacer{
    flex-grow: 1;
    height: 150vh;
}

.social-button{
    margin-bottom: 50px;
    padding: 20px 40px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    align-self: center;
    margin-bottom: 50px;

}

.social-button:hover{
    background-color: #007bff;
    color: #fff;
    transform: scale(1.1);
}


@media(min-width:769px) and (max-width:1024px){
    .spacer{
        height: 40vh;
    }
    .social-button{
        width: 80%;
        text-align: center;
        font-size: 1.2rem;
        padding: 20px;
    }
    .image-background{
        height: 70vh;
    }
}