@import url(https://fonts.googleapis.com/css?family=Raleway:700);
*, *:before, *:after {
  box-sizing: border-box;
}
html {
    height: 100%;
}
body {
    font-family: 'Raleway', sans-serif;
    background-color: #FFFFFF; 
    height: 100%;
}

.text-wrapper {
    height: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
}

.title {
    font-size: 6em;
    font-weight: 700;
    color: #58C5C7;
}

.subtitle {
    font-size: 40px;
    font-weight: 700;
    color: #426AB3;
}

.description {
    font-size: 1em;
    font-weight: 700;
    color: #00939F;
    font-style: italic;
}

.buttons {
  margin: 30px;
}
.buttons a.button {
  font-weight: 700;
  border: 2px solid #58C5C7;
  text-decoration: none;
  padding: 15px;
  text-transform: uppercase;
  color: #58C5C7;
  border-radius: 26px;
  transition: all 0.2s ease-in-out;
}
.buttons a.button:hover {
  background-color: #58C5C7;
  color: white;
  transition: all 0.2s ease-in-out;
}
