.top{
    font-family: 'Determination';
    font-size: 50px;
    align-items: right;
    text-align: left;
    animation-name: change;
    animation-duration: 10s;
    animation-fill-mode: forwards;
    margin-top: 50px;
    z-index: 5;
}

.goBack{
    font-family: 'Determination';
    font-size: 50px;
    align-items: bottom;
    text-align: left;
    animation-name: echo;
    animation-duration: 10s;
    animation-fill-mode: forwards;
    margin-top: 150px;
    margin-left: 15px;
    z-index: 5;
    white-space: nowrap;
}

.first{
    font-family: 'Determination';
    font-size: 50px;
    align-items: right;
    text-align: left;
    animation-name: echo;
    animation-duration: 15s;
    animation-fill-mode: forwards;
    white-space: nowrap;
    margin-top: 200px;
    z-index: 5;
}
.second{
    font-family: 'Determination';
    font-size: 50px;
    align-items: right;
    text-align: left;
    animation-name: echo;
    animation-duration: 20s;
    animation-fill-mode: forwards;
    white-space: nowrap;
    margin-top: 200px;
    z-index: 5;
}
.third{
    font-family: 'Determination';
    font-size: 50px;
    animation-name: echo;
    animation-duration: 25s;
    animation-fill-mode: forwards;
    margin-top: 200px;
    z-index: 5;
    white-space: nowrap;
    width: 400px;
}

.good{
  width: 400px;
}

th{
    height: 100px;
}

@font-face{
    font-family: 'Determination';
    src: url(det-font/DeterminationMonoWebRegular-Z5oq.ttf)
}

.text{
    font-family: 'Determination';
    color: #42fcff;
}

body{
    font-family: 'Determination';
    display: flex;
    background-color: #0a0a0b;
    flex-direction: column;
}

header{
    font-size: large;
    background-color: #0a0a0b;
    flex: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top{
    font-family: 'Determination';
    font-size: 50px;
    align-items: center;
    text-align: center;
    animation-name: change;
    animation-duration: 10s;
    animation-fill-mode: forwards;
    z-index: 5;
}

.linkpretty{
    color: #42fcff;
}

.linkpretty:hover{
    color: #42fcff;
}

.echoWelcome{
    font-family: 'Determination';
    align-items: center;
    text-align: center;
    font-size: 50px;
    position: absolute;
    z-index: 1;
    animation-name: echo;
    animation-duration: 15s;
    animation-fill-mode: forwards;
    top:5%;
    right:40%
}

main{
    background-color: #0a0a0b;
    flex: 1 calc(100vh - 110px);
    display: flex;
    align-items: center;
    flex-direction: column;
}
footer{
    font-size: 20px;
    text-align: center;
    align-items: center;
    font-family: 'Determination';
    color: #42fcff;
    background-color: #0a0a0b;
    flex: 0 80px;
    display: flex;
    flex-direction: column;
}

a{
    padding: 5%;
    text-align: center;
    align-items: center;
    flex:1;
}
td{
    width: 200px;
}
.bottom{
    font-family: 'Determination';
    font-size: large;
    text-align: end;
    margin-right: 50px;
    margin-left: 85%;
    color: #42fcff;
    cursor:pointer;
}

@media (max-width: 500px){
    div{
        display: none;
    }
}

@keyframes fadeIn {
    from{
        opacity: 0;
    }
    25%{
        opacity: 0;
    }
    to{
        opacity: 2;
    }
}

@keyframes change {
    from {
        color: #0a0a0b;
      }
    
      to {
        color: #42fcff;
      }
  }
  @keyframes echo {
    from{
        color: #0a0a0b;
    }
    25%{
        color:#0a0a0b;
    }
    to{
        color: #42fcff;
    }
  }