@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

body {
    animation: transitionIn 0.75s;
}

@keyframes transitionIn {
    from {
        opacity: 0;
        transform: rotateX(-30deg);

    }

    to {
        opacity: 1;
        transform: rotateX(0);
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #272533;
    color: white;

}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 30%;
  }


  li, a, button {
      font-family: 'Montserrat', sans-serif;
      font-weight: 400;
      font-size: 16px;
      color: #edf0f1;
      text-decoration: none;
  }
  header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 30px 10%;
  }
  

  .logo {
      cursor: pointer;
  }
.nav_links {
    list-style: none;
}
.nav_links li {
    display: inline-block;
    padding: 0px 20px;
}
.nav_links li a {
    transition: all 0.7s ease 0s;
}
.nav_links li a:hover {
    color: #0088a9;
    
}
.btn {
    padding: 9px 25px;
    background-color: rgba(0, 136, 169, 1);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 1.25s ease 0s;
}
.btn:hover {
    background-color: rgb(99, 2, 226);

}

.aligncenter {
    text-align: center;
}

.arctic {
    padding: 9px 25px;
    background-color: #0088a9;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: absolute;
    top: 500px;
    left: 950px;
    border-radius: 5px;

}

.arctic::after, .arctic::before
{
    content: '';
    position: absolute;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: transform 0.3s ease;
    background: #0087a985;
}

.arctic:hover
{
    transform: translate(-12px, -12px);
}

.arctic:hover::after
{
    transform: translate(6px, 6px)
}

.arctic:hover::before
{
    transform: translate(12px, 12px);
}
.wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .typing-demo {
    width: 22ch;
    animation: typing 2s steps(22), blink .5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid;
    font-family: monospace;
    font-size: 2em;
  }
  
  @keyframes typing {
    from {
      width: 0
    }
  }
      
  @keyframes blink {
    50% {
      border-color: transparent
    }
  }