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

html {
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
}

ul, ol {
    list-style-position: inside;
}

a {
    outline: none;
}
a:focus-visible {
    outline: 2px solid currentColor;
}

button,
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    background: none;
    border: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    height: 100dvh;
    width: 100dvw;
    margin: 0;
    background-color: #fbf2f0;
    color: #706953;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#full-name {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 50;
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-align: center;
    margin: 0 0 0.5rem 0;
}

#roles {
    font-size: clamp(0.8rem, 4vw, 1rem);
    text-align: center;
}

#oak {
    height: clamp(6rem, 15vw, 10rem);
    display: block;
}

#namelogo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: clamp(2rem, 8vw, 4rem);
    gap: clamp(1rem, 4vw, 2rem);
    flex-wrap: wrap;
}

#column {
    width: 100%;
    max-width: 700px;
    padding: 1rem;
    box-sizing: border-box;
    margin-inline: auto;

    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

p {
    margin-block: 0.8rem;
}

a:link, a:visited {
    color: crimson;
    text-decoration: none;
}

@media (max-width: 600px) {
    #namelogo {
        flex-direction: column;
        gap: 1rem;
    }
}

footer {
    text-align: center;
    font-size: 0.8rem;
    color: #a0a0a0;
}

li {
    margin-block: 0.5rem;
}