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

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background: #f5f4f0;
    color: #111111;
    font-family: "Manrope", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}


.landing {
    min-height: 100vh;
    padding: 28px 4vw;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.brand span,
h1 span {
    color: #ff5a1f;
}

.year {
    font-family: "DM Mono", monospace;
    font-size: 10px;
}


.content {
    width: 100%;
    max-width: 850px;
}

.small-text {
    margin-bottom: 15px;

    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
}

h1 {
    font-size: clamp(80px, 15vw, 190px);
    line-height: 0.8;
    letter-spacing: -0.09em;
    font-weight: 800;
}

.description {
    max-width: 420px;
    margin-top: 45px;

    font-size: 15px;
    line-height: 1.7;
    color: #555555;
}


.portfolio-button {
    width: fit-content;
    margin-top: 35px;
    padding: 15px 18px;

    display: flex;
    align-items: center;
    gap: 35px;

    background: #111111;
    color: #ffffff;

    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: 1px;

    transition: 0.2s ease;
}

.portfolio-button:hover {
    transform: translateY(-3px);
}

.portfolio-button span {
    font-size: 17px;
}

.bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-family: "DM Mono", monospace;
    font-size: 10px;
}

.socials {
    display: flex;
    gap: 25px;
}

.socials a {
    transition: opacity 0.2s ease;
}

.socials a:hover {
    opacity: 0.4;
}

.location {
    letter-spacing: 0.5px;
}

