* {
    margin: auto;
    font-family: "Zalando Sans Expanded", sans-serif;
    color: white;
    font-weight: 600;
}

body {
    background-color: rgb(17, 17, 17);
    background-image: url("img/home-img.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.navbar-container {
    position: fixed;
    background: linear-gradient(to bottom, black, rgba(0, 0, 0, 0));
    width:100%;
    z-index: 1;
}

.navbar-container,
.nav-links * {
    display: flex;
    text-decoration: none;
}

.nav-links {
    margin-top: 7.5vh;
    margin-left: 0;
}

.nav-links ul * {
    margin-left: 2vh;
    margin-right: 11vh;
}

.nav-links a {
    position: relative;
    text-decoration: none;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width 0.4s ease;
}

.nav-links a:hover::after {
    width: 100%;
    cursor: pointer;
}

.logo {
    margin-left: 5vh;
    margin-top: 2.5vh;
    margin-right: 5vh;
    width: 14vh;
}

.logo img {
    width: 13vh;
}

h1{
    font-size: 3rem;
}


footer {
    background: linear-gradient(to top, rgb(10, 3, 0), rgb(30, 12, 0));
    margin-top: 3%;
    padding: 30px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.7;
    letter-spacing: 0.05em;
}

.social-media {
    margin: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 1;
}

.social-media a {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-media a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

