.welcomelogo{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 700px;
}
.welcometextalign{
    display: flex;
    justify-content: center;
}
.welcometext{
    position: relative;
    text-align: center;
    font-size: 80px;
    font-family: 'Space Mono', monospace;
    margin-top: -150px;
    z-index: 1;
}
.titletext{
    font-size: 60px;
    color: white;
}
.subtitletext{
    font-size: 40px;
    color: white;
}
.text{
    font-size: 30px;
    color: white;
}
.videodiv{
    height: 800px;
    box-shadow: 0px -40px 50px black inset;
}
#myVideo {
    position: absolute;
    z-index: -1;
    object-fit: cover;
    object-position: center center;
    width: 100%; 
    height: 100%;
}
.textdiv{
    display: flex;
    justify-content:space-around;
    background-color: black;
}
.articlebox{
    width: 50%;
    padding: 0px 100px 50px 100px;
}
.centerbox{
    display: flex;
    width: 100%;
    justify-content: center;
}
.embedvideo{
    aspect-ratio:16/9;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.048);
    border-left: solid #696969;
    border-bottom: solid #333333;
    border-radius: 40px;
}
.buttonstyle{
    display: flex;
    justify-content: center;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.048);
    /* background-image: linear-gradient(to right bottom, #00ffff, #ff00ff); */
    width: 50px;
    padding: 5px 100px;
    border-top: 5px solid white;
    border-bottom: 5px solid white;
    margin-top: 20px;
    clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
}
.buttonstyle:hover{
    background-image: none;
    background-color: #303030;
    /* background-image: linear-gradient(to right bottom,rgba(0, 255, 255, 0.5), rgba(255, 0, 255, 0.5)); */
}
.buttontext{
    font-size: 30px;
}
@media only screen and (max-width: 1024px){ 
    .welcomelogo{
        width: 500px;
    }
    .textdiv{
        display: block;
    } 
    .articlebox{
        width: auto;
        padding: 0px 100px 50px 100px;
    }
    .welcometext{
        font-size: 60px;
        margin-top: -120px;
    }
}
@media only screen and (max-width: 768px){ 
    .welcomelogo{
        width: 300px;
    }
    .textdiv{
        display: block;
    } 
    .articlebox{
        width: auto;
        padding: 0px 100px 50px 100px;
    }
    .welcometext{
        font-size: 40px;
        margin-top: -70px;
    }
    .videodiv{
        height: 300px;
    }
    /* #myVideo {
        height: 60%;
    } */
}
@media only screen and (max-width: 500px){ 
    .welcomelogo{
        width: 200px;
    }
    .textdiv{
        display: block;
    } 
    .articlebox{
        width: auto;
        padding: 0px 50px 50px 50px;
    }
    .sidemenucontainer{
        width: 320px;
    }
    .titletext{
        font-size: 40px;
        color: white;
    }
    .subtitletext{
        font-size: 30px;
        color: white;
    }
    .text{
        font-size: 20px;
        color: white;
    }
    .welcometext{
        font-size: 30px;
        margin-top: -50px;
    }
}