html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: 'Fira Code', monospace;
    background-color: #EEEEEE;
    color: #1D1616;
}

main {
    flex: 1;
}

header {
    background: #1D1616;
    color: #EEEEEE;
    padding: 5px 0;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

footer {
    display: flex;
    justify-content: space-between;
    background: #1D1616;
    color: #EEEEEE;
    text-align: center;
    padding: 10px 0px;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer a{
    color: #EEEEEE;
    text-decoration: none;
}

footer * {
    margin: 5px 20px;
}

.nav-btn {
    display: inline-block;
    margin: 0 8px;
    padding: 8px 16px;
    color: #EEEEEE;
    text-decoration: none;
    border-radius: 4px;
    transition: color 0.2s;
}

.nav-btn:hover {
    color: #8E1616;
}

.selected{
    color: #D84040;
}

section{
    margin: 20px;
}

section p{
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 10px 0;
}

.welcome-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.welcome {
  font-size: 10rem;
  margin: 0 0 0 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 5px;
  background-image: linear-gradient(
    90deg,
    #F7374F,
    #88304E, 
    #522546, 
    #F7374F  
  );
  background-size: 200% auto; 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
  animation: liquid-gradient 8s linear infinite;
}

@keyframes liquid-gradient {
  to {
    background-position: 200% center;
  }
}

nav{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    width: fit-content;
    border-radius: 3rem;
    margin-right: 2rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #1D1616;
    font-size: 2rem;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
    padding: 10px;
    transition: transform 0.2s;
}

.social-links a:hover {
    color: #8E1616;
    transform: scale(1.2);
}



@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 10px;
    }
    
    header p {
        margin: 0 0 10px 0 !important;
        font-size: 0.9rem;
        text-align: center;
    }
    
    nav {
        flex-wrap: wrap;
        justify-content: center;
        margin-right: 0;
    }
    
    .nav-btn {
        margin: 5px;
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .welcome-section {
        padding: 20px;
        text-align: center;
    }
    
    .welcome {
        font-size: 4rem; 
        margin: 0; 
        letter-spacing: 2px; 
    }

    section p{
        font-size: 1rem;
    }
    
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px; 
    }
    
    .social-links a {
        margin: 0;
        font-size: 2rem; 
        padding: 15px;
    }
    
    footer {
        flex-direction: column;
        text-align: center;
    }
    
    footer * {
        margin: 5px 0;
    }
}


