@font-face {
  font-family: 'Colombia';
  src: url(/fonts/Colombia-Regular.ttf);
}

@font-face {
  font-family: 'AllisonScript';
  src: url(/fonts/Allison_Script.otf);
}

html {
  background-color: #ddecef;
}

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

  color: #749db3;
  font-family: 'Colombia';
  font-size: 16pt;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 10px 0;
}

h1 {
  font-weight: 400;
  font-family: 'AllisonScript';
  font-size: 80pt;
}

h2 {
  font-size: 40pt;
  color: #749db3;
}

p {
  margin: 0 0 0 0;
}

p, h2, h3 {
  text-align: center;
}

#card {
  height: 480px;
}

#card h1 {
  position: relative;
  font-size: 80pt;
  top: -339px;
  right: -183px;
}

#card p.highlight-blue {
  position: relative;
  top: -253px;
  left: -180px;
}

p ~ h3 {
  margin-top: 18px;
}

.content-card {
  background-color: #ffffff;
  border-radius: 25px;
  box-shadow: -10px -10px 20px 0px rgba(0, 0, 0, 0.1), 10px 10px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 15px 15px;
  width: 80vw;
  max-width: 1000px;
  min-width: 530px;
}

.content-card > div {
  text-align: center;
}

a, a:visited, a:hover {
  color: #e5c64c;
}

.highlight {
  color: #e5c64c;
}

.highlight-blue {
  color: #749db3;
}

.blue {
  background-color: #ddecef;
}

.small, small {
  margin-top: 30px;
  font-size: 10pt;
  color: #b5ab9e;
}

@media (max-width: 600px) {

  .content-card {
    min-width: 200px;
  }

  #card {
    height: auto;
  }

  #card img {
    max-width: 80vw;
  }
  
  #card h1 {
    position: relative;
    top: 0;
    right: 0;
  }
  
  #card p.highlight-blue {
    position: relative;
    top: 0;
    left: 0;
  }
}