body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #000000;
    transition: background-color 0.3s, color 0.3s;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 95vh;
}

.container {
    flex-grow: 1;
}

body.dark-mode {
    background-color: #1a1a1a;
    color: #ffffff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

#toggle {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #333;
    color: white;
}

body.dark-mode #toggle {
    background-color: #ffd700;
    color: #000;
}

section {
    margin-bottom: 30px;
}

img {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mimimimi {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mimimimi .tenor-gif-embed {
    width: 100%;
    height: 100%;
}


.mimimimi a {
    display: none;
}

footer {
    text-align: center;
}