*{
  margin: 0;
  padding: 0;
}
body{
  max-width: 100vw;
  max-height: fit-content;
  background-color: blue;
  background-image: url(img/pexels-pixabay-2150.jpg);
  background-size: cover;
  font-family: 'Silkscreen', sans-serif; 
  color: ghostwhite;
  text-shadow: 4px 4px 6px darkred;
}
h1{
  margin-top: 40px;
  font-size: 72px;
  text-align: center;
}
h2{
  font-size: 50px;
  text-align: center;
}

#name{
margin-top: 50px;
font-size: 120px;
text-align: center;
}

p{
  font-size: 30px;
  text-align: center;
}

section{
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
button{
  font-size: 60px;
  color: ghostwhite;
  background-color: transparent;
  border: none;
 }
button a{
  padding: 10px 20px 10px 20px;
  text-decoration: none;
  color: ghostwhite;
  font-family: 'Silkscreen', sans-serif; 
  text-shadow: 4px 4px 6px darkred;
}

button a:hover{
  font-weight: bold;
  color: #8b0000;
  text-shadow: 4px 4px 6px ghostwhite;
}
img{
  width: 100px;
}
footer{
  text-align: center;
  color: ghostwhite;
  font-size: smaller;
  font-family: 'Silkscreen', sans-serif; 
  text-shadow: 4px 4px 6px darkred;
  margin-top: 20px;
}
