body {
    background-color: #bbff99;
    background-image: linear-gradient(319deg, #ceffb5 0%, #fff1b4 37%, #ffd5d5 100%);
    height: 100%;
    margin: 0;
    margin-bottom: 2rem;
    background-repeat: no-repeat;
    background-attachment: fixed;

    font-family: "Inter", Verdana, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section {
    margin: 3rem;
    text-align: center;
    align-items: center;
}

.profile-picture {
    margin-top: 4rem;
    width: 8rem;
    margin-bottom: 1rem;
}

.profile-picture.main {
    border-radius: 100%;
}

.image {
    max-height: 6rem;
    max-width: 90%;
}

.name {
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.name.small {
    font-size: 18px;
    margin-top: 1rem;
}

.undertitle {
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    font-weight: 500;
    margin-top: 0.25em;
    text-align: center;
}

.undertitle.small {
    font-size: 14px;
}

.quicklinks {
    display: flex;
    margin-top: 2rem;
    height: 2rem;
    gap: 0.5em;
    margin-bottom: 2rem;
    justify-content: center;
}


.quicklink {
    width: 2rem;
    height: 2rem;
    transition: transform 100ms;
}

.quicklink:hover {
    transform: scale(1.05);
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
}

.link {
    background-color: white;
    padding: 1.25em;
    border-radius: 5px;
    text-decoration: none;
    color: black;
    box-shadow: rgba(10, 11, 13, 0.08) 0px 2px 4px 0px;
    font-size: 16px;
    width: 50%;
    transition: transform 200ms;
}

.link:hover {
    transform: scale(1.02);
}
