html,
body {
    font-family: "Rubik", sans-serif;
    margin: 0;
    padding: 0;
    background: pink;
}

h1 {
    text-wrap: balance;
}

canvas {
    display: block;
    text-align: center;
}

main {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(90vw, 1000px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    text-align: center;
}

main > div {
    width: 46%;
    margin: 2%;
    float: left;
}

@media (orientation: portrait) {
    main > div {
        width: 96%;
        margin: 2%;
        float: none;
    }
}

canvas {
    border-radius: 10px;
}

span {
    text-decoration: underline;
    color: rebeccapurple;
}

span#svg {
    text-decoration: none;
}

svg{
    padding: 5px 10px;
}

li{
    list-style: none;
    line-height: 3rem;
    border-bottom: 1px solid silver;
    display: flex;
    padding: 0.2rem 0;
}

li img{
    border-radius: 25% 40%;
    width: 3rem;
    height: 3rem;
    margin-right: 1rem;
}

a {
    color: rebeccapurple;
}