body {
    margin: 0;
    padding: 0;
    background-image: url("https://xenyonmedia.com/images/databck.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

header {
    position: sticky;
    z-index: 100;
    top: 0;
    background-color: white;
}

.navbar {
    display: flex;
    height: 80px;
}

#logo {
    margin-left: 5rem;
    width: 40px;
    height: 40px;
    align-self: center;
}

#name {
    font-family: "Manrope", sans-serif;
    font-weight: 250;
    font-size: .8rem;
    align-self: center;
    margin-left: 1rem;
    letter-spacing: .2rem;
}

.links {
    font-family: "Manrope", sans-serif;
    font-weight: 250;
    font-size: .8rem;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin-left: auto;
    margin-right: 5rem;
}

.links p {
    text-decoration: none;
    color: black;
    letter-spacing: .2rem;
}

.hero {
    justify-content: center;
    display: grid;
    grid-template-areas: "middle";
    height: calc(100vh - 80px);
    overflow: hidden;
    padding: 1rem;
}

.hero-text {
    color: white;
    text-align: center;
    grid-area: middle;
    align-self: center;
    z-index: 2
}

#banner {
    grid-area: middle;
    margin-left:auto;
    margin-right:auto;
    filter: brightness(80%);
    height: calc(100vh - 80px);
}

#title {
    font-family: "Manrope", sans-serif;
    font-size: 4rem;
    letter-spacing: 1rem;
    transform: translateX(0.6rem);
}

.under-title {
    font-family: "Manrope", sans-serif;
    font-weight: 200;
    font-size: 1.6rem;
}

p {
    font-family: "Manrope", sans-serif;
    font-weight: 200;
    font-size: 1.4rem;
}

@media screen and (max-width: 950px) {
    #title {
        font-size: 3rem;
    }
}



@media screen and (max-width: 650px) {
    #title {
        font-size: 2.5rem;
    }

    .under-title {
        font-size: 1.5rem;
    }

    .links {
        display: none;
    }

    #logo {
        margin-left: 1.4rem;
    }
}