@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,700;0,800;0,900;1,600&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
}
body {
  min-height: 100vh;
  background: url(./3d-elephant-cliff-against-sunset-sky.jpg)no-repeat;
  background-size: cover;
  background-position: center;

}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.3rem 10%;
  background: #293039;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}
.logo{
  font-size: 2rem;
  color: #ecebf1;
  text-decoration: none;
  font-weight: 800;
}
.navbar a {
  display: inline-flex;
  padding: 5px;
  font-size: 1rem;
  color: rgb(252, 252, 245);
  text-decoration: none;
  font-weight: 400;
}
#check {
  display: none;
}
.icons{
  position: absolute;
  right: 5%;
  font-size: 2.8rem;
  color: rgb(246, 247, 248);
  cursor: pointer;
  display: none;

}
.left {
  font-size: 2rem;
}

.firstSection {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 120px 0;
}


.leftSection {
  
  font-size: 3rem;
  
}


.rightSection{
  margin-bottom: 0px;
  
  width: 30%;
}
.rightSection img{
  width: 80%;
  margin-right: 0%;
}
#myphoto {
  display: none;
}

@media (max-width: 992px) {
  .header {
    padding: 1.3rem 5%;
  }
}
@media(max-width: 768px){
  .icons{
    display: inline-flex;
  
  }
  #check:checked~ .icons #mainmenu{
    display: none;
  }
  .icons #closingmenu{
    display: none;
  }
  #check:checked~ .icons #closingmenu{
    display: block;
  }
  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(50px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    overflow: hidden;
    transition: .3s ease;
  }
  .navbar a{
    color: rgb(28 28 14);
  }
  
  #check:checked~.navbar{
    height: 17.7rem;
  }
  .navbar a {
    display: block;
    font-size: 1.1rem;
    margin: 1rem;
    text-align: center;
  }
  .rightSection {
    display: none;
  }
  #myphoto {
    display:flex;
    justify-content: center;
    align-items: center;
    
    
  }
  .firstSection{
    padding-left: 30px;
  }
  } 