* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
.logo{
  width: 200px;
}
body{
  font-family: "Poppins", serif;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(145, 140, 131, 1));
  -webkit-background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(145, 140, 131, 1));
  -moz-background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(145, 140, 131, 1));
  
}



nav{
  background-color: white;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}
nav ul{
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav li{
  height: 50px;
}
nav a{
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
}
.w3-teal{
  height: 8%;
  padding: 0 30px;
  text-decoration: none;
  display: none;
  align-items: center;
  color: black;
}
@media(max-width: 800px){
  .w3-teal{
    display: flex;
  }
  }
  

nav a:hover{
  background-color: #f0f0f0;
}
.sidebar{
  position: fixed;
  top: 0px;
  right: 0px;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.sidebar li{
  width: 100%;
}
.sidebar a{
  width: 100%;
}
.menu-button{
  display: none;
}
@media(max-width: 800px){
  .hideOnMobile{
    display: none;
  }
    .menu-button{
      display: block;
    }
  }
  @media(max-width: 400px){
    .sidebar{
      width: 100%;
    }
}

.section{
  display: flex;
  justify-content: center;
  padding-top: 30px;
  margin-bottom: 20px;
}
.card{
  
  width: 750px;
  padding: 22px 10px;
  border-radius: 10px;
  line-height: 1.8;
  margin-bottom: 30px;
}
#ch{
  display: none;
}
#ch:checked ~ .content{
  display: block;
}
#ch:checked ~ label{
  display: none;
}
.content{
  display: none;
}
label{
  display: inline-block;
  cursor: pointer;
  color: #fff;
  background-color: #111010;
  padding: 3px 13px;
  border-radius: 3px;
  margin-top: 12px;
}
.title{
  font-size: 35px;
  font-weight: 300;
  color: #232323;
  margin-left: 0px;
  margin-top: -90px;
  padding-top: 0px;
}
.light-text{
  font-weight: 200;
  font-size: 30px;
}
.responsive {
  width: 100%;
  height: auto;
  max-height:600px;
  max-width:600px;
  border-radius: 300px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-shadow: 20px 20px 10px grey;
  margin-bottom: 100px;
  border: 5px solid #555;
}

footer{
  background-color: #111;
}
.footer-container{
width: 100%;
padding: 70px 30px 20px;
display: flex;
flex-direction: row;
position: fixed;
bottom: 30px;
}
.social-icons{
  display: flex;
  justify-content: center;
}
.social-icons a{
  text-decoration: none;
  padding: 10px;
  background-color: white;
  margin: 10px;
  border-radius: 50%;
}
.social-icons a i{
  font-size: 2em;
  color: black;
  opacity: 0.9;
}
/* hover effects on social media icons */
.social-icons a:hover{
  background-color: #111;
  transition: 0.5s;
}
.social-icons a:hover i{
  color: white;
  transition: 0.5s;
}
.footerNav{
  margin: 30px 0;
  
}
.footerNav ul{
  display: flex;
  justify-content: center;
}
.footerNav ul li a{
  color: white;
  margin: 20px;
  text-decoration: none;
  font-size: 1.em;
  opacity: 0.7;
  transition: 0.5s;
}
.footerNav ul li a:hover{
  opacity: 1;
}
.footerBottom{
  background-color: white;
  padding: 0px;
  text-align: center;
  position:fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  font-size: 14px;
}
.footerBottom p{
  color: black;
}
.author{
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0px;
  font-weight: 400;
  margin: 0px 5px;;
  color: black;
  font-size: 14px;
}
