nav {
    background-color: #1a1a1a;
    color: white;
    padding: 1rem;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav .team-logo {
    height: 4rem;
    width: 4rem;
}

nav .title {
    display: flex;
    align-items: flex-end;
}

nav h1 {
    font-weight: 700;
}

nav a {
    text-decoration: none;
    color: white;

}

@media (max-width: 600px) {
    nav {
        gap: 1rem;
    }

    nav .team-logo {
        height: 3rem;
    }
    
    nav .title {
        flex-direction: column;
        align-items: flex-start;
    }

    nav h1 {
        font-size: 1.5rem;
    }
}