/* 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: "Cursive";
    src: url("/Cursive.ttf") format("truetype");
}

@font-face {
    font-family: "bpdots";
    src: url("/BPdotsUnicaseSquareBold.otf");
}

@font-face {
    font-family: "Grape Soda";
    src: url("/GrapeSoda.ttf");
}

body {
  background-color: #1b141b;
  color: #bb6066;
  font-family: serif;
}

#name {
  font-family: "Cursive";
  font-size: 75px;
  position: fixed;
  z-index:5;
  text-shadow: 0px 0px 5px #1B141B, 0px 0px 5px #1B141B, 0px 0px 5px #1B141B, 0px 0px 5px #1B141B, 0px 0px 5px #1B141B, 0px 0px 5px #1B141B, 0px 0px 5px #1B141B, 0px 0px 5px #1B141B;
  top:30px;
  left:50px;
}

#box {
  font-family: "Grape Soda";
  font-size: 14px;
  background-color: #ccbcc0;
  width:650px;
  height:460px;
  position: absolute;
  top:50px;
  left: 150px;
    top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-doll {
position: fixed;
bottom: 5px; 
right: 5px; 
z-index: 1000;
}
.page-doll img {
width: 200px;
height: auto;
cursor: pointer;
animation: float 3s ease-in-out infinite; 
}

        @keyframes float {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0);
            }
        }

code {
  font-family: "bpdots";
  background-color: #bb6066;
  color: #ccbcc0;
  padding-left:3px;
  padding-right:3px;
  border-radius:3px;
}

@media screen and (max-device-width: 480px) {
  #box {
    max-width: 125%;
    margin-left:50px;
  }
  #box img {
    max-width: 20%;
    max-height: 20%;
  }
  .page-doll {
    visibility: hidden;
  }
  .page-doll img {
    visibility: hidden;
  }
  #name {
    padding: 0px !important;
    margin: 0px !important;
    font-size: 370%;
  }
}