/* 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." */

@font-face {
  font-family: pico8;
  src: url(pico-8.otf.woff2);
}

body {
  background-color: rgb(255, 153, 204);
  color: rgb(255,255,255);
  font-family: "pico8";
  text-align: center;
}

.section{
  padding: 10px;
  background: rgb(205, 101, 153);
  max-width: 70%;
  width: fit-content;
  margin: 50px auto;
  border-radius:15px;
  font-size: 30px;
  transition: all .3s ease-in-out;
  border:rgb(173, 11, 97) 3px solid;
  filter: drop-shadow(8px 8px 10px rgba(0,0,0,0.1));
}

.section:hover{
  transform: scale(1.2);
  filter: drop-shadow(8px 8px 10px rgba(0,0,0,0.3));
}

h1{
  font-size: 50px;
}

.desc{
  color: rgb(220,220,220);
  font-size: 20px;
}


.smalltext{
  color: rgb(180,180,180);
  line-height: 0;
  font-size: 15px;
}

.circle{
  border-radius: 50%;
}

.icon{
  max-width: 300px;
  font-size: 100px;
  line-height:0;
}

.obj{
  max-width: 90%;
}

.banner{
  width: 100vmin;
}

iframe{
  margin-bottom: 20px;
}

button{
  cursor: pointer;
  padding: 10px;
  border: 1px solid rgb(208, 93, 150);
  border-radius: 15px;
  background: rgb(204, 25, 121);
  font-family: "pico8";
  color:rgb(255,255,255);
  text-decoration: none;
}

a{
  font-family: "pico8";
  color:rgb(255,255,255);
  text-decoration: none;
}