:root {
  font-size: 10px;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;

  background-color: #fff7ed;

  font-family: "Gochi Hand", cursive;
  font-size: 3rem;
}

a {
  text-decoration: none;
}

h1 {
  font-family: "Gochi Hand", cursive;
  font-size: 9.2rem;
}

p {
  margin: 0;
}

.nametag {
  display: flex;
  flex-direction: column;
  align-items: center;

  margin-bottom: 10rem;
  border-radius: 1rem;
  padding: 1rem;
  width: 38rem;

  color: #fff;

  transition: .3s;
}
.nametag .title {
  font-family: "Roboto Mono", sans-serif;
  font-size: 3rem;
}
.nametag p {
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
}
.nametag.purple { background-color: #d45aff; }
.nametag.green { background-color: #63b763; }
.nametag.right { transform: rotate(-5deg); }
.nametag.left { transform: rotate(5deg); }

.nametag.right:hover { transform: rotate(0) scale(1.1); }
.nametag.left:hover { transform: rotate(0) scale(1.1); }

.writting {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  
  margin-top: 1rem;
  border-radius: 1rem;
  padding: 4rem;
  width: 100%;

  background-color: #fff;
  color: #000;
}
.writting p {
  font-family: "Gochi Hand", cursive;
  font-size: 3rem;
}
