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

body {
    background-color: black;
    color: #000;
    font-family: sans-serif;
    line-height: 1.4;
}

nav {
    width: 100%;
    background: #fff;
    padding: .6rem 1rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.name a {
    font-weight: bold;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-family: sans-serif;
    font-weight: 900;
    color: black;
    text-decoration: none;
}

nav ul {
    display: flex;
    gap: 19px;
    list-style: none;
    flex-wrap: wrap;
    font-family: 'Courier New', Courier, monospace;
    padding: 13px 20px;
}

nav ul li a {
    color: rgb(99, 99, 99);
    text-decoration: none;
    font-weight: bold;
    font-size: clamp(0.8rem, 1.4vw, 1rem);
}

me {
    display: flex;
    width: 100%;
    min-height: 60vh;
    background-image: url("imgs/background.jpg");
    background-size: cover;
    background-position: top;
    padding: 60px 18px;
    color: white;
}

me section {
    max-width: 720px;
}

me section h1 {
    font-size: clamp(1.5rem, 3.9vw, 2rem);
    margin-bottom: 6px;
    -webkit-text-stroke: 1.6px black;
    color: white;
}

me section h2 {
    font-size: clamp(2.6rem, 6.8vw, 4rem);
    margin-bottom: 22px;
    -webkit-text-stroke: 2px black;
    color: white;
}

me section p {
    font-size: clamp(0.7rem, 1vw, 0.9rem);
    max-width: 555px;
    text-shadow: 2px 2px 4px black;
    color: white;
    -webkit-text-stroke: 0.25px black;
}

.footer {
    background: black;
    text-align: center;
    color: white;
    padding: 32px 12px;
}

.footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 17px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.footer img {
    width: clamp(27px, 4.9vw, 46px);
    height: clamp(27px, 4.9vw, 46px);
    padding: 5px;
    border-radius: 13px;
    background-color: rgb(149, 149, 149);
    filter: grayscale(100vw) invert(100vw) contrast(75vw) brightness(75vw);
}

@media (min-width: 768px) {
    me {
        padding: 102px 58px;
    }
    nav ul {
        gap: 33px;
    }
}

@media (min-width: 1024px) {
    me {
        padding: 138px 118px;
    }
    me section {
        max-width: 705px;
    }
}