* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 body {
    font-family: "Inter", sans-serif;
    color: rgb(246, 246, 248);
    background-color: rgb(0, 0, 0);
    height: 100vh;
 }

 ul{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: end;
    list-style: none;
    background-color: rgb(0, 0, 0);
 }

 a{
    text-decoration: none;
    color: white;
    padding: 10px;
    margin: 10px;
    border: 2px solid rgb(255, 255, 80);
    border-radius: 10px;
    background-color: rgb(255, 159, 80);
 }

 a:hover{
    background-color: rgb(255, 80, 80);
    cursor: pointer;
 }

 h2{
    text-align: left;
    margin: 20px;
 }



 img{
    width: 400px;
    height: 300px;
    border-radius: 20px;
    margin: 10px;
 }

 main{
    min-height: 600px;
 }

 section{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items:center;
    min-height: auto;
 }

 .images{
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;
 }

 footer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: rgb(0, 0, 0);
    color: white;
    border-top: 2px solid rgb(255, 255, 80);
    padding-top: 30px;
 }

 h1{
    text-align: center;
    margin: 20px;
    color: goldenrod;
 }

 .only_text{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    padding-left: 30px;
 }

form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: goldenrod;
    border: yellow 2px solid;
    width: 50%;
    padding: 20px;
    margin: 20px;
}
 input{
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid rgb(255, 255, 80);
    background-color: rgba(249, 249, 249, 0.746);
    width: 80%;
    color: rgb(228, 95, 17);
 }

#section_left{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items:flex-end;
}

video{
    width: 400px;
    height: 300px;
    border-radius: 30px;
    margin: 10px;
}

table{
    border: 2px solid rgb(252, 255, 80);
    width:30%;
    margin: 20px;
    border: 1px solid yellow;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-stretch: expanded;
    
}

th{
    background-color:goldenrod;
    color: rgb(196, 25, 196);
    text-align:center;
    font-size: large;
}
 tr{
    background-color: rgb(0, 0, 0);
    color: white;
    text-align:center;
    font-size: small;
 }

 

