
.scrollable {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
    border: 1px solid #000;
    border-radius: 10px;
    background: #eee;
    height: 500px;
    overflow-y: scroll;
    width: 100%;
}
.scrollable a {
    padding: 10px;
    border-radius: 10px;
    background: #fff;
    text-decoration: none;
    color: #000;
    width: 100%;
    transition: 0.3s;
}
.scrollable a:hover {
    background: #ddd;
}
body {
    background-image: url('/assets/img/large.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}
body .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 96%;
    margin: 0 auto;
}
.panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
    width: -webkit-fill-available;
    margin: 0 5%;
}
.panel .large-image {
    max-height: 300px;
}
.button {
    margin: 0 0 1rem;
    padding: .75em 1.25em;
    border: 1px solid transparent;
    border-radius: 40px;
    transition: background-color .25s ease-out, color .25s ease-out;
    font-size: 1.4rem;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    background-color: #020041;
    color: white;
}


.formpanel {
    padding: 20px;
    border: 1px solid;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

blockquote.blockquote {
    padding: 20px;
    border: 1px solid black;
    border-radius: 20px;
    backdrop-filter: blur(3px);
    width: 100%;
}