@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background-color: #FFEAB6;
  font-family: 'Abel', sans-serif;
  line-height: 20px;
}

.soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
  padding: 60px;
}

img {
  display: inline-flex;
  max-width: 100%;
}

p {
  width: 100%;
  margin: 30px 0 6px;
  color: #002026;
  font-size: 25px;
  text-align: center;
}

a.email {
  color: #245256;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s;
}

a.email:hover {
  color: #002026;
}

.links {
  display: flex;
  margin-top: 12px;
}

a.link {
  margin: 0 6px;
  padding: 12px 24px;
  background-color: #245256;
  border-radius: 6px;
  color: #FFEAB6;
  text-decoration: none; 
  transition: background-color 0.2s;
}

a.link:hover {
  background-color: #002026;
}