* {
    padding: 0;
    margin: 0;
}

/* ### ### ### ### ### */

body {
    background-color: var(--background-body);
    color: var(--font-primary);
    font-family: "Poppins", sans-serif;
    background-image: url("../assets/wallpapers/wallpaper_001.jpg");
    background-repeat: no-repeat, no-repeat;
    background-size: cover;
    background-position: center center;
}

/* ### ### ### ### ### */

.no_selection {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
}

.debug {
    border: 1px solid #000;
}

/* ### ### ### ### ### */

.page {
    width: 100vw;
    height: 100vh;
    position: relative;
    background-color: rgba(255,255,255,.75);
}

/* ### */

.page .logo {
    position: absolute;
    top: var(--theme-page-padding);
    right: var(--theme-page-padding);
    display: flex;
    flex-direction: column;
}

.page .logo img {
    width: auto;
    height: 80px;
}

.page .logo span {
    font-size: 18px;
    font-weight: 500;
    color: var(--font-secondary);
}

/* ### */

.page .banner {
    width: calc(100% - (var(--theme-page-padding) * 2));
    position: absolute;
    top: 50%;
    left: 0;
    background-color: rgb(255 151 0 / 30%);
    padding: calc(var(--theme-page-padding) / 2) var(--theme-page-padding);
}

.page .banner h2 {
    color: var(--font-primary);
    font-size: 32px;
    font-weight: 600;
}

.page .banner h2 a {
    text-decoration: underline;
    color: var(--font-primary);
}

/* ### ### ### ### ### */
