@font-face {
    font-family: Ink Free;
    src: url('font/Inkfree.ttf');
    background-image: url("./images/");
}

.snek {
    display: flex;
    margin: 10px auto;
    width: 200;
    height: 200;
}

.greetings {
    color: white;
    font-size: 75px;
    text-align: center;
    margin-bottom: 10px;
}

.wave {
    animation-name: wave-animation;  
    animation-duration: 2.5s;        
    animation-iteration-count: infinite;  
    transform-origin: 70% 70%;       
    display: inline-block;
}
  
@keyframes wave-animation {
      0% { transform: rotate( 0.0deg) }
     10% { transform: rotate(14.0deg) }  
     20% { transform: rotate(-8.0deg) }
     30% { transform: rotate(14.0deg) }
     40% { transform: rotate(-4.0deg) }
     50% { transform: rotate(10.0deg) }
     60% { transform: rotate( 0.0deg) }  
    100% { transform: rotate( 0.0deg) }
}

.intro {
    color: white;
    font-size: 55px;
    text-align: center;
}

.github-icon {
    color: rgb(165, 159, 159);
    font-size: 40px;
    transition: color 0.5s;
    margin: 0 10px;
}

.discord-icon {
    color: #0f34bd;
    font-size: 40px;
    transition: color 0.5s;
}

.github-icon:hover{
    color: rgb(0, 0, 0);
}

.discord-icon:hover {
    color: rgb(0, 0, 0);
}

.footer {
    color: white;
    font-size: 20px;
    text-align: center; 
}

body {
    font-family: "Ink Free";
    background-image: url("./images/background.png");

}

h1 {
    margin: 0;
    font-size: 30px;
    line-height: 35px;
    font-weight: 1000;
    color: #a32727;
}

.center-main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 380px;
}

.block {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 75%;
    max-width: 600px;
    padding: 24px;
    background: black;
    color: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px 0 rgba(14, 30, 37, .16);

}

.error-message {
    font-size: 16px;
    font-weight: 300;
}

a {
    margin: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    color: #4078c0;
}

a:hover {
    color: grey;
    transition: 0.5s;
}
