@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');


body {
    background-image: url(paperbackground.png);
}

p {
  font-family: "Onest", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.basics {
    position: fixed;
    left: 900px;
    top: 100px;
    border: 3px solid black;
    background-color: white;
    padding: 20px;
}

.stamps {
  position: fixed;
    left: 1150px;
    top: 100px;
    border: 3px solid black;
    background-color: white;
    padding: 20px;
}

.about {
    position: fixed;
    left: 900px;
    top: 500px;
    width: 450px;
    border: 3px solid black;
    background-color: white;
    padding: 20px;
}

.sticker {
  position: fixed;
  transition: transform .4s; /* Animation */
}

.sticker:hover {
  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  
}