main {
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 2rem;
    box-sizing: border-box;
}
h1 {
    font-weight: 300;
}
input {
    margin: 0.5rem 0;
}
a.button, input[type="submit"], button {
    margin: 2rem 0;
}
.links {
    display: flex;
    flex-wrap: wrap;
    max-width: 50rem;
}
.link {
    width: 8rem;
    height: 8rem;
    margin: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    border: 2px solid;
    border-radius: 0.5rem;
    padding: 1rem;
    box-sizing: border-box;
    transition: 0.2s linear background-color,color;
}
.link:hover {
    background-color: #912B6D;
    color: white;
}
.link .material-symbols-rounded {
    font-size: 3rem;
}
.link .logo {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 3rem;
    height: 3rem;
}
.link:hover .logo {
    filter: brightness(100)
}