*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body{
  color: #415D58;
  line-height: 1.1;
  background-color: #1f1f1f;
  height: 100vh;
}

::-moz-selection { /* Code for Firefox */
  color: #ffffff;
  background: #000000;
}

::selection {
  color: #ffffff;
  background: #000000;
}

.aktiv{
  font-family: "aktiv-grotesk-extended",sans-serif; 
}






.page{
  background: url('../img/cretan-dream_bg.png') no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.page::after{
  content: "";
  position: absolute;
  width: 105%;
  top: -35%;
  left: 14%;
  height: 100%;
  border: 1px solid #415D58;
  transform: rotate(155deg);
  border-radius: 50%;
}

.flex-cont{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.logo{
  align-self: center;
}

.title{
  max-width: 70%;
}

h2{
  font-size: 65px;
  font-family: "ivypresto-display",serif;
  text-align: center;
  font-weight: 300;
}



.mail a{
  font-family: "neue-haas-unica",sans-serif ;
  font-size: 16px;
  text-decoration: none;
  color: #415D58;
  font-weight: 300;
}






@media(max-width: 600px){
  .logo img{
    width: 250px;
  }
  .page::after{
    width: 135%;
    top: -25%;
    left: 35%;
    height: 110%;
    transform: rotate(215deg);
    z-index: 1;
  }
}


