:root{
    --gutter: 8px;
}
html{
    font-family: "Noto Sans", serif;
    color: #1E2B50;
}

body{
    min-height: 100vh;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

h1{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--gutter);
    padding-inline: calc(var(--gutter) * 2);
    padding-block: calc(var(--gutter) * 2);
    flex-direction: column;
    text-align: center;

}