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

body {
    background-color: #000c24;
    margin: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: white;
    font-family: "montserrat";
}

.container {
    display: flex;
    align-items: center;
}

img {
    animation: rotate 2s infinite;
    height: 15rem;
}

@keyframes rotate {
    0% {
      transform: rotate(0deg)
    }
    100% {
      transform: rotate(360deg)
    }
  }

svg {
    display: block;
    font: 10.5em 'Montserrat';
    width: 960px;
    height: 200px;
    margin: 0 auto;
}

.text-copy {
    fill: none;
    stroke: white;
    stroke-dasharray: 6% 29%;
    stroke-width: 5px;
    stroke-dashoffset: 0%;
    animation: stroke-offset 5.5s infinite linear;
}

.text-copy:nth-child(1){
  stroke: #212f4d;
  animation-delay: -1;
}

.text-copy:nth-child(2){
  stroke: #0038a7;
  animation-delay: -3s;
}

.text-copy:nth-child(3){
    stroke: #0055ff;
    animation-delay: -2s;
  }

.text-copy:nth-child(4){
  stroke: #326fe6;
  animation-delay: -4s;
}

.text-copy:nth-child(5){
  stroke: #638bdb;
  animation-delay: -5s;
}

@keyframes stroke-offset{
  100% {stroke-dashoffset: -35%;}
}

h1 {
    font-size: 1.5rem;
}

ul {
    list-style-type: none;
    display: flex;
    width: 40rem;
    align-items: center;
    justify-content: space-around;
}

button {
    z-index: 5;
    cursor: pointer;
    background-color: #0038a7;
    display: flex;
    align-items: center;
    justify-content: center;    
    height: 3rem;
    width: 9rem;
    border-radius: 0.5rem;
    transition: all 0.1s;
}

button:hover {
    background-color: #638bdb;
    transition: all 0.1s;
}

a {
    color: #ffffff;
    font-weight: bolder;
}

