*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: rgba(12, 13, 13, 0.8);
}
.nav-bar{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: rgba(12, 13, 13, 0.8);
    height: 80px;
}
.nav-bar a{
    text-decoration: none;
    color: rgba(179, 124, 42, 1);
    font-size: 45px;    
}
.nav-bar span{
    text-decoration: none;
    color: rgba(179, 124, 42, 1);
    font-size: 45px;    
}
.nav-bar>ul>li>a{
    font-size: 15px;
}
.nav-bar img{
    height: 150px;
    object-fit: cover;
    position: absolute;
    margin-left: -80px;
    margin-top: -30px;
}
#menu > label > nav{
    position: absolute;
}
.switch {
    cursor:pointer;
}
.switch input[type=radio] {
    opacity:0;
}
.clic:checked + nav  {
    display:flex;
    flex-direction: column;
}
.clic:not(:checked) + nav  {
    display:none;
}
.nav-bar>label>nav{
    position: absolute;
    top: 80px;
    background-color: rgba(12, 13, 13, 0.8);
    
    height: 270px;
}
.Start{
    height: 150vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 60px;
}
.Start div{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 75%;
    height: 75%;
}
h1{
    font-size: 200px;
}
h2{
    font-size: 50px;
}
.Start img{
    height: 1000px;
    object-fit: contain;
}
section img{
    height: 90%;
}
section div{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
    background: linear-gradient(to bottom right, rgba(255,255,255,0.05), rgba(255,255,255,0.4));
    border-radius: 24px;
}
section p{
    font-size: 35px;
}
.normal{
    height: 80vh;
    display: flex;
    align-items: center;
}
.reverse{
    height: 80vh;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}
footer{
    background-color: rgba(12, 13, 13, 0.8);
    height: 200px;
    display: flex;
    justify-content: space-evenly;
}
footer nav{
    display: flex;
    flex-direction:column-reverse;
    justify-content: center;
}
footer a{
    font-size: 30px;
    text-decoration: none;
    color: white;
    padding: 6px;
}