* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: mundial, sans-serif; 
    --color-prim: #00fff0;
    --color-terz: #04D4F0;
    --color-sek: #1986A0;
    --color-dark: #171717;
    color: white;
}

body {
    background-color: var(--color-dark);
}

span {
    color: var(--color-prim);
}

h1 {
    font-size: 70px;
}

h2 {
    font-size: 35px;
}

section {
    text-align: center;
}

/* Landing */
#landing {
    height: 100vh;
    animation: landingslider 60s ease-in-out infinite;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.alphabd {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
}

@keyframes landingslider {
    0%,100% {
        background-image: url(data/img/landing/1.webp);
    }
   10% {
        background-image: url(data/img/landing/2.webp);
    }
   20% {
        background-image: url(data/img/landing/3.webp);
    }
   30% {
        background-image: url(data/img/landing/4.webp);
    }
    40% {
        background-image: url(data/img/landing/5.webp);
    }
    50% {
        background-image: url(data/img/landing/6.webp);
    }
    60% {
        background-image: url(data/img/landing/7.webp);
    }
    70% {
        background-image: url(data/img/landing/8.webp);
    }
    80% {
        background-image: url(data/img/landing/9.webp);
    }
    90% {
        background-image: url(data/img/landing/10.webp);
    }
}

.landing-header{
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.landing-header img {
    width: 80%;
}

.contact {
    margin-top: 50px;
}

.contact a {
    color: #FFF;
    text-decoration: none;
    border-right: 2px solid #FFF;
    border-left: 2px solid #FFF;
    font-size: 14px;
    background-color: rgba(34, 34, 34, 0.7);
    padding: 12px 0;
    display: grid;
    transition: ease-in-out 200ms;
    width: 80%;
    margin: 0 auto;
}

.contact a:hover {
  background-color: #171717;
}

.contact i {
    margin: 0 10px;
}

.contact span {
  margin-right: 6px;
}

.contact a:first-child {
  border-top: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
}

.contact a:last-child {
    border-bottom: 2px solid #FFF;
    border-top: 2px solid #FFF;
}

@media screen and (min-width: 480px) {
.contact a {
      font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
.contact a {
      font-size: 20px;
  }
}

@media screen and (min-width: 1024px) {
.contact a {
      font-size: 20px;
      margin-right: 8px;
      border-right: 2px solid #FFF;
      border-left: 2px solid #FFF;
      display: inline;
      padding: 8px 0;
  }

.contact a:first-child {
      border-top: 0;
      border-bottom: 0;
  }
  
.contact a:last-child {
        border-top: 0;
        border-bottom: 0;
    }

.landing-header img {
    width: auto;
}
}