body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #0f1021;
    color: white;
    margin: 0;
    font-family: sans-serif;
}

.dark {
    background: #ffcee4;
    color: white;
}

button {
    display: block;
    margin: 10px auto;
    border: 1px solid #ffcee4;
    background: white;
    font-size: 20px;
    border-radius: 6px;
    padding: 10px 15px;
    transition: all 150ms ease-in-out;
}

button:hover {
    background: #ffcee4;
    cursor: pointer;
}

.dark button:hover {
    background: #0f1021;
    color: white;
}

.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 50px;
}

.column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.dayone,
.carnival,
.dilemma,
.answer,
.manifesto,
.blood,
.orange,
.untold,
.daydream {
    width: 150px;
    height: auto;
    border-radius: 10px;
    transition: all 150ms ease-in-out;
    transform-origin: center;
    margin-top: 30px;
    box-shadow: 10px 10px 10px white;
}

.dayone:hover,
.carnival:hover,
.dilemma:hover,
.answer:hover,
.manifesto:hover,
.blood:hover,
.orange:hover,
.untold:hover,
.daydream:hover {
    filter: contrast(80%);
    transform: scale(1.1);
}

.container {
    background-color: #fff;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: 600px;
    box-sizing: border-box;
    text-align: center;
    margin: 20px 120px 20px 120px;
}

.dark .container {
    background: #fff;
    color: #000;
}

h1 {
    text-align: center;
    font-family: sans-serif;
    font-size: 36px;
    background-color: #FB90B7;
    color: white;
    padding: 10px;
    border-radius: 6px;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

img {
    max-width: 300px;
}

.Epic {
    border-radius: 10px;
    transition: all 150ms ease-in-out;
}

.Epic:hover {
    filter: contrast(80%);
    transform: scale(1.1);
}

h2 {
    font-weight: 200;
}

.pinkmem {
    text-align: center;
    font-family: sans-serif;
    font-size: 24px;
    background-color: #FB90B7;
    color: white;
    padding: 5px;
    border-radius: 3px;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

h3 {
    text-align: center;
    font-family: sans-serif;
    font-size: 24px;
    background-color: #FB90B7;
    color: white;
    padding: 5px;
    border-radius: 3px;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.members {
    text-align: center;
    font-family: sans-serif;
}

.members ul {
    list-style-type: none;
    padding: 0;
}

.members li {
    margin: 10px 0;
}

.backhome {
    text-align: center;
}