<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
    background-color: rgb(255, 238, 241);

}
#main_wrap{
    width: 1330px;
    height: 580px;
    margin: auto;
    position: relative;
    border: 4px inset  rgb(221, 221, 221);
    background-color: pink;
}

#home{
    text-align: center;
    padding-bottom: 2px;
    color: black;
    border-radius: 10px;
    height: 60px;
    width: 60px;
    margin-left: 30px;
    margin-top: 20px;
    position: absolute;
    font-size: 50px;
    background-color: palevioletred;
}

#home:hover{
    background-color: gray;
    color: white;
    width: 75px;
    height: 75px;
    transition: 0.1s ease-in;
    margin-top: 18px;
    margin-left: 27px;

}

#video_container{
    display: flex;
    align-content: center;
    margin-top: 20px;
    margin-left: 310px;
    width: 700px;
    height: 400px;
    border-radius: 50px;
}

#right_arrow{
    text-align: center;
    color: black;
    border-radius: 10px;
    height: 70px;
    width: 70px;
    margin-left: 1100px;
    margin-top: -200px;
    position: absolute;
    font-size: 60px;
    background-color: palevioletred;
}

#right_arrow:hover{
    background-color: gray;
    color: white;
    width: 75px;
    height: 75px;
    transition: 0.1s ease-in;
    margin-top: -203px;
    margin-left: 1098px;
}

#left_arrow{
    text-align: center;
    color: black;
    border-radius: 10px;
    height: 70px;
    width: 70px;
    margin-left: 180px;
    margin-top: -200px;
    position: absolute;
    font-size: 60px;
    background-color: palevioletred;
}

#left_arrow:hover{
    background-color: gray;
    color: white;
    width: 75px;
    height: 75px;
    transition: 0.1s ease-in;
    margin-top: -203px;
    margin-left: 178px;
}

.video{
    display:  block;
    width: 800px;
    height: 400px;
    border: none;
    overflow: auto;
    border-radius: 50px;
    border: 5px inset grey
}

#letter{
    display: flex;
    justify-content: center;
    align-items: center ;
    font-size: 40px;
    border-radius: 30px;
    margin-top: 30px;
    margin-left: 550px;
    width: 200px;
    height: 100px;
    border: solid 3px grey;
    background-color: rgb(228, 228, 228);
}
</pre></body></html>