html,
body {
    padding: 0px;
    margin: 0px;
    overscroll-behavior: none;
}

html {
    background-color: var(--page-background);
}

body {
    margin: 0 auto;
    width: 50vw;
    background-color: var(--background);
}


.central-wrapper {
    /* justify-self: center; */
    /* align-self: center; */
    text-align: center;
}

.line {
    width: 100%;
    height: 1px;
    background-color: rgb(168, 168, 168);
    margin: 1rem 0;
}

/* Flag */
.flag {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100vw;
}

.flagstripe {
    width: 100vw;
    height: 5px;
    background-color: red;
}

.flagstripe.blue {
    background-color: var(--babyblue);
}

.flagstripe.pink {
    background-color: var(--girlpink);
}

.flagstripe.white {
    background-color: white;
}