@font-face {
    font-family: 'League';
    src: url('../fonts/League.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0a1428, #010a13, #0d1e3a, #0a1428);
    background-size: 400% 400%;
    animation: hextechWave 15s ease infinite;
    color: #f0e6d2;
    font-family: 'League', 'Georgia', serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

@keyframes hextechWave {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #010a13e6;
    border-bottom: 2px solid #c8aa6e;
    box-shadow: 0 4px 10px #00000080;
}

.top-nav h1 {
    color: #c8aa6e;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.logout-btn {
    color: #c8aa6e;
    text-decoration: none;
    border: 1px solid #c8aa6e;
    padding: 8px 16px;
    transition: 0.3s ease;
}

.logout-btn:hover {
    background-color: #c8aa6e;
    color: #0a1428;
}

.home-container {
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    gap: 30px;
    flex: 1;
    padding: 20px;
    text-align: center;
}

.main-title {
    color: #c8aa6e;
    font-size: 3.5rem;
    letter-spacing: 2px;
}

.sub-text {
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.5;
    color: #f0e6d2;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #00000000;
    color: #c8aa6e;
    border: 2px solid #c8aa6e;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
    border-radius: 3px;
}

.cta-button:hover {
    background-color: #c8aa6e;
    color: #0a1428;
    box-shadow: 0 0 15px #c8aa6e80;
}