/* css/web1.ccs*/
/*simple reset*/
* {
  box-sizing: border-box;
  margin: 1px;
  padding: 0%;
  font-family: "Times New Roman", Times, serif;
  text-align: center;
}

body{
  background-color: darkcyan;
}

a{
  text-decoration: none;
  color: rgb(40,83,83);
  font-size: 27px;
  margin-top: 12px;

}


h1 {
  margin-top: 20px;
  font-size: 5.5rem;
}

h2{
  margin-top: 20px;

}

p{
  color: rgb(40,83,83);
  text-decoration: none;
}

section{
  margin-top: 50px;
}

footer{
  margin-top: 35%;
  font-size: 20px;
}

#grid{
  display: grid; 
  gap: 20px;
  padding: 20px;
}

#grid a{
  transition: 0.3s ease-in-out;
  font-size: 27px;
  transition: all 0.3s ease-in-out;
}

#grid a:hover{
  color: white;
  text-shadow: 2px 2px 4px #000000;
  font-size: 33px;
}