@font-face {
    font-family: 'jost';
    src: url('resources/Jost-VF.ttf') format('truetype');
    font-display: swap;
}

body {
    font-family: jost;
    font-weight: 350;
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
}

b {
    font-weight: 600;
    font-style: normal;
}

#menu {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto 0px auto;
    text-decoration: underline;
    font-weight: 300;
    gap: 10px;
}


#logo {
    display: block;
    width: 150px;
    margin: 25px auto 40px auto;
}

details p {
    font-size: 1rem;
    width: 70vw;
    max-width: 700px;
    margin: 20px auto;
}

a {
    color: inherit;
}

.button {
    cursor: pointer;
    height: 60px;
    width: 280px;
    max-width: 90vw;
    border-radius: 30px;
    margin: 5px auto;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--background-color);
    color: var(--color);
    transform: var(--transform);
    font-size: 1.125rem;
    text-decoration: none;
    text-align: center;
    line-height: 1;
}

.buttons > :nth-child(4n+1) {
    --transform: rotate(-1deg);
}

.buttons > :nth-child(4n+2) {
    --transform: rotate(3deg)
}

.buttons > :nth-child(4n+3) {
    --transform: rotate(-2deg)
}

.buttons > :nth-child(4) {
    --transform: rotate(1deg);
}

.button p {
    margin: auto;
}
