*{
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}




.list{
    text-align: center;
    margin: 20px;
    padding: 20px;
    background-color: rgba(218, 155, 20, 0.616);
    border-radius: 10px;
}
.list span{
    margin: 0px 30px;
    font-size: 20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: bold;
    cursor: pointer;
}
.list:hover{
    background-color: orange;
    a:hover{
        color: white;
    }
}
.list a{
    text-decoration: none;
}



.area{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
    margin: 20px 80px;
    background-color: rgb(255, 149, 0);
    border-radius: 10px;
    color: white;
}
.image-box video{
    width: 600px;
    border-radius: 10px;
}
.image-box video:hover{
    transform: scale(1.05);
    transition: .2s linear;
}
.text{
    width: 300px;
    margin: 10px;
    margin-left: 30px;
}
.mtxt{
    font-size: 30px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    margin: 0px 0px 5px 0px;
}
.stxt{
    font-size: 15px;
    margin: 0px 0px 5px 0px;
}
.lang{
    display: flex;
    margin: 5px 0px;
    align-items: center;
}
.lang span{
    margin: 0px 5px;
    padding: 3px 0px;
    border-bottom: 2px solid white;
}
.options{
    display: flex;
    margin: 20px 0px;
}
.options p{
    padding: 5px 10px;
}
.options a{
    text-decoration: none;
    color: white;
    padding: 5px 10px;
    border: 2px solid white;
    border-radius: 7px;
    cursor: pointer;
}

.options a:hover{
    color: orange;
    background-color: white;
}
.options p::after{
    visibility: hidden;
}
.options p:hover::after{
    visibility: visible;
}