:root {
    --text-color: #606060;
    --bold-color: #202020;
}

* {
    margin: 0;
    box-sizing: border-box;
    color: var(--text-color);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
}

body {
    width: 100vw;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    line-height: 1.5rem;
    padding: 20vh;
    padding-left: 20vw;
    padding-right: 20vw;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

a:hover {
    text-decoration: underline;
}

svg {
    vertical-align: middle;
}

.name {
    color: var(--bold-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.contact {
    display: flex;
    gap: 0.75rem;
}
