.content {
    text-align: center;
    color: white;
    z-index: 1;
    font-family: 'Roboto Mono', monospace;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.animation-slide-up {
    animation: slide-up 0.5s ease-out both;
  }
.moving-gradient {
    background: linear-gradient(90deg, #ffffff, #818181);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}
  

h1 {
    font-size: 70px;
    transition: transform 0.2s;
}

#description {
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 100;
}

#logo-main {
    height: 50vh;
}

h3 {
    font-size: 20px;
    transition: transform 0.2s;
}

.social-logo {
    padding-left: 15px;
    padding-right: 10px;
    width: 30px;
    height: 30px;
    transition: transform 0.2s;
}

.social-logo:hover {
    transform: scale(1.2);
}

h1:hover {
    transform: scale(1.5);
}

h3:hover {
    transform: scale(1.1);
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    padding-bottom: 15px;
}