body{
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height:auto;
    background-color: beige;
    font-family: 'Exo',sans-serif;
}

nav{display: grid;
    justify-items: center;
    height: 50px;
    width: 100%;
    background:rgb(36, 40, 44);
    position: fixed;
    align-items: center;
    margin-top: -1.35rem;
}

nav ul{
    position: fixed;
    display: flex;
    align-items: center ;
    width: 85%;
    max-width: 1100px;
    list-style-type: none;
    margin-right: 2rem;
}
nav ul li {
   margin-right: .3rem;
    color: snow;
    transition: .3s;
    font-size: .9rem;
    padding: 4px;
    border-radius:12px ;
    transition: .3s;
}

nav ul li a:hover{
    padding: 4px;
    border: 1.8px solid white;
    border-radius:12px ;
    box-sizing: border-box;
    transition: .3s;
}

nav ul li a{
    text-decoration: none;
    color: beige;
    transition: .3s;
}

.active{
    padding: 4px;
    border: 1.8px solid white;
    border-radius:12px ;
}

.logo{
    flex: 1;
    margin-right: .5rem;
    font-size: 1.5rem;
}

.container {
    width: 85%;
    max-width: 1100px;
    height:auto;
    background: beige;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 2rem;
}

h1{
   padding-top: 3rem;
}

span{
    color:rgb(211, 127, 97);
}

.main{
    width: 100%;

    height: 18rem;
    background-image: url(/about/orbital.avif);
    background-position: center;
    background-repeat: no-repeat;
}

.container p{
font-size: 1.1rem;
margin-bottom: 2rem;
}

.mail {
  color:rgb(36, 40, 44);
    transition: .2s;
  
}

.mail:hover{
    transition:.2s;
    color:rgb(211, 127, 97);
}
.foot{
    height: 6.5rem;
    width:100%;
    background-color:rgb(36, 40, 44) ;
    margin-top: 2rem;
    text-align: center;
    width: 100%;
    padding-top: 20px;
    color:beige ;

}

@media (min-width:800px) {
    .block{
        display: grid;
       grid-template-columns: 1fr 1fr;
      
       height: 25rem;
    }

    .block p {
        margin-left: 1rem;
    }

    .main{
        height: 95%;
    }
     
    .container{
        text-align: left;
       
      
    }

    .cnt{
        width:100% ;
        text-align: center;
    }
}