@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
}

html, body {
    background: white;
    color: black;
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    background-image: url("background.svg");
    background-repeat: repeat;
    background-position: center;
    background-attachment: fixed;
    font-family: Figtree;
}

.profile {
    width: 200px;
    height: 200px;
    border-radius: 999px;
    display: block;
    pointer-events: none;
}

h1 {
    text-align: center;
    margin-top: 24px;
    font-size: 32px;
    font-weight: 600;
}

label {
    font-size: 20px;
    opacity: 0.75;
    margin-top: 5px;
    font-weight: 600;
}

p {
    font-size: 20px;
    opacity: 0.65;
    margin-top: 24px;
    font-weight: 500;
    width: 325px;
}

body > div {
    display: flex;
    gap: 24px;
    padding-top: 24px;
}

body > div > a[alt] {
    font-size: 20px;
    opacity: 0.85;
    text-decoration: underline;
    color: black;
}