@font-face {
  font-family: QuicksandRegular;
  src: url('../fonts/Quicksand-Regular.ttf');
  font-weight: 400;
}

@font-face {
  font-family: QuicksandMedium;
  src: url('../fonts/Quicksand-Medium.ttf');
  font-weight: 500;
}

@font-face {
  font-family: QuicksandBold;
  src: url('../fonts/Quicksand-Bold.ttf');
  font-weight: 700;
}

body {
  background : #fff;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: QuicksandMedium;
  font-size: 1.22em;
  color: #881a4d;
}

h1 {
  font-family: QuicksandBold;
  font-size: 1.44em;
  font-weight: bold;
  margin: 30px 0;
}

p {
  font-size: 1.22em;
  margin: 30px 0;
}

a {
  color: #c40d62;
}

a:hover {
  color: #fff;
}

#info {
  padding: 30px 60px;
  text-align: center;
  transform: scale(1);
  transition: transform linear 0.1s;
  margin: 60px;
}

#info:hover {
  transform: scale(1.03);
  transition: transform linear 0.1s;
}
