body, html {
    margin: 0;
    height: 100%;
    width: 100%;
    background-color: white;
}

.container{
    position: relative;
    width: 100%;
    height: 100%;
    
    
}
.imgdiv{
    margin: 200px auto 0 auto;
    height: 90px;
    width: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo{
    height: auto;
    max-width: 100%;
    object-fit: cover;
}
.mainheader{
    margin: 0 auto;
    text-align: center;
    font-size: 70px;
    font-family: "poppins", sans-serif;
    font-weight: 600;
}

.youtube{
    margin-top: 40px;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
}
.youtubeButton{
    width: 150px;
    height: 50px;
    font-family: "poppins", sans-serif;
    font-weight: 500;
    font-size: 20px;
    background-color: #9365ff;
    color: white;
    border: none;
    transform: all 0.2s ease;
}
.youtubeButton:active{
    transform: scale(0.96);
}
.copyright{
    font-size: 20px;
    font-family: "poppins", sans-serif;
    margin-top: 350px;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 1075px){
    .imgdiv{
        margin: 200px auto 0 auto;
        height: 40px;
        width: 500px;
    }
    .mainheader{
        margin: 0 auto;
        text-align: center;
        font-size: 50px;
    }
    .youtubeButton{
        width: 120px;
        height: 40px;
        
    }
    .copyright{ 
        margin-top: 290px;
        
    }
}

@media screen and (max-width: 500px){
    .imgdiv{
        margin: 200px auto 0 auto;
        height: 40px;
        width: 310px;
    }
    .mainheader{
        margin: 0 auto;
        text-align: center;
        font-size: 20px;
    }
    .youtubeButton{
        width: 120px;
        height: 40px;
        
    }
    .copyright{ 
        margin-top: 290px;
        
    }
}

