html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

.bg-fullscreen {
    background-image: url('/static/website_background_edit.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
}

.bg-white-transparent {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem;
}

.margin-bottom {
    margin-bottom: 1rem;
}

.rounded-corners {
    border-radius: 1rem;
}