/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url("scenecore.gif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  
  color: black;
  font-family: Verdana;
}

div {
  border-radius: 12px;
  padding: 15px;
  margin: 20px auto;
  max-width: 600px;
  box-shadow: 0 4px 10px rgba(255, 175, 219, 0.3);
  background-color: #db9a72;
  color: #000000;
  opacity: 1;
}

.bio {
  background-color: #ed7b34;
  border: 2px solid #692b05;
  text-align: center;
}

.interests {
  background-color: #ed7b34;
  border: 2px solid #692b05;
}

.socials {
  background-color: #ed7b34;
  border: 2px solid #692b05;
  text-align: center;
}
