@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body{
  background-color: rgb(154, 216, 154);
  margin: 0px;
  font-family: "montserrat", sans-serif;
}
header{
  background-image: linear-gradient(to bottom, rgb(85, 167, 85), rgba(0, 0, 0, 0.685));
  display: flex;
  padding: 20px;
  color: white;
  justify-content: center;
}
main{
  background-color: white;
  max-width: 800px;
  margin: auto;
  margin-bottom: 20px;
  padding: 40px;
  text-align: center;
  border-radius: 0px 0px 10px 10px;
  font-family: "inter", sans-serif;
  line-height: 1.5rem;
  letter-spacing: .07rem;
  box-shadow: 10px 0 20px rgba(0,0,0,0.15), -10px 0 20px rgba(0,0,0,0.15);
}
aside{
  background-color: #9dc990;
  padding: 25px;
  border-radius: 16px;
  max-width: 350px;
  margin: 30px auto;
  text-align: center;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.12);
  border: 1px solid #eee;
}
ul{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
aside h3{
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
li a{
  text-decoration: none;
  color: black;
}
a >code:hover{
  text-decoration: underline;
  color: blue;
}
footer{
  background-color: rgb(85, 167, 85);
  display: flex;
  justify-content: center;
  padding: 10px;
}