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

header {
    background-color: #1E293B;
    width: 100%;
    height: 13vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2%;
}

body {
    padding-top: 14vh;
}

.logo {
    height: 8vh;
    width: auto;
}

.logo:hover {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-button {
    background-color: #132839;
    color: #27416a;
    border: 2px solid #0F1B25;
    border-radius: 15px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.login-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background-color: #2c3b4e;
}

@media screen and (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background: #1E293B;
        width: 100%;
        padding: 10px 0;
        display: none;
    }

    .nav-links.show {
        display: flex;
    }

    .login-button {
        padding: 8px 15px;
        font-size: 14px;
    }
}
