body{
    display: flex;
    background-color: #070513;
    color:aliceblue;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    height: 100vh;
}

.main-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
}

.invite-main-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
}

#myVideo{
    height: 100%
}

.title{
    text-align: center;
}

.title h1{
    font-size: 72px;
    font-weight: 700;
}

.title h3{
    font-size: 24px;
}

.social{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.social img{
    width: 70%;
}

.msg .links{
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.msg .links i{
    font-size: 40px;
    color: #18FFFF;
    cursor: pointer;
    padding-bottom: 8px;
    border-bottom: transparent solid 3px;
}

.msg .links i:hover{
    font-size: 40px;
    color: white;
    border-bottom: #18FFFF solid 3px;
}

.msg{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.msg h4{
    font-size: 30px;
    font-weight: 600;
}

.msg .greeting{
    border-bottom: whitesmoke solid 3px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.msg .call-to-action h5{
    font-weight: 400;
    font-size: 25px;
    text-align: center;
    margin-bottom: 50px;
}

@media (max-height: 980px){
    body{
        height: auto;
    }
    .main-container{
        margin: 100px 20px;
    }

    #myVideo {
        height: 700vh;
    }
    #user-greeting{
        margin: 20px 0;
        text-align: center;
    }

    #yt-vid{
        width:100vw;
        height:60vh;
    }

    #button-group{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin: 10px 30px;
    }

    #yes{
        width: 45%;
        height: 50px;
        background-color: #FFE4A4;
        color: black;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
    }
    #yes h3{
        margin: 0;
    }

    #yes:hover{
        width: 45%;
        height: 50px;
        background-color: white;
        color: #070513;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
    }

    #no{
        width: 45%;
        height: 50px;
        background-color: grey;
        color: black;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
    }

    #no:hover{
        width: 45%;
        height: 50px;
        background-color: rgb(49, 6, 6);
        color: #070513;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
    }

    #no h3{
        margin: 0;
    }

    .yes-main-container{
        background-image: url('spikeballimage.jpg');
        height: 100vh;
        width: 100vw;
        background-position: center; /* Center the image */
        background-repeat: no-repeat; /* Do not repeat the image */
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    #user-greeting-yes{
        height: 60%;
        padding-top: 80px;
        /* background-color: red; */
        display: flex;
        align-items: center;
        justify-content: center;

    }

    #user-greeting-yes h3{
        font-size: 40px;
        font-style: normal;
        font-weight: 900;
        font-size: 50px;
        line-height: 85px;
        letter-spacing: 0.17em;
        color: #FFE4A4;
 
    }

    #user-msg-yes{
        display: flex;
        /* background-color: yellow; */
        height: 40%;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        text-align: center;
        background: rgba(24, 23, 51, 0.72);
        padding: 0 30px;
    }
    #user-msg-yes button{
        background: #FFE4A4;
        border: 2px solid #000000;
        border-radius: 10px;
        height: 50px;
        width: 200px;
        font-weight: 700;
        margin-bottom: 80px;
    }




    .title h1{
        font-size: 48px;
        font-weight: 700;
    }
    
    .title h3{
        font-size: 20px;
    }

    .msg h4{
        font-size: 30px;
        font-weight: 600;
        text-align: center;
    }
    
    .msg .call-to-action h5{
        font-weight: 400;
        font-size: 20px;
        text-align: center;
        margin-bottom: 50px;
    }
}