* {
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: whitesmoke;
    margin: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
}

.section {
    height: 100%;
    width: 90%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.subsection {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.subsection>a {
    width: 100%;
    border: 1.5px solid black;
    padding: 10px 0px;
    color: black;
    text-decoration: none;
    gap: 20px;
    border-radius: 4px;
    transition-duration: 200ms;
}

.subsection>a:hover {
    background: black;
    color: white;
}

.subsection>a.return {
    align-self: center;
    width: fit-content;
    padding: 10px 10px;
}

a.mail {
    color: black;
}

h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 0 1px transparent, 0 1px 2px rgb(0 0 0 / 50%)
}
