html, body {
    background: black !important;
    margin: 0;
    padding: 0;
    color: white;
}

.logo{
    width: 160px;
    height: 130px;
    cursor: pointer;
}

.header-container{
    background-color: #15253E;
    width: 100%;
    margin: 0;
    padding: 0;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: 'Oswald', sans-serif;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 25px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.8;
}

footer {
    background-color: #15253E;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 100px;
    font-family: 'Roboto', sans-serif; !important;
}
