/* Start of Night Mode Styles */
body {
    background-color: #1a1a2e;
    color: #eaeaea;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a {
    color: #ff5c8a;
    text-decoration: none;
}

a:hover {
    color: #ff85a2;
    text-decoration: underline;
}

header {
    background-color: #16213e;
    padding: 10px;
}

header h1 {
    color: #ff5c8a;
}

.footer {
    background-color: #161925;
    color: #eaeaea;
    padding: 10px;
    text-align: center;
}

button {
    background-color: #ff5c8a;
    color: #1a1a2e;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background-color: #ff85a2;
}

input[type="text"] {
    background-color: #2f2f4f;
    color: #eaeaea;
    border: 1px solid #4e4e7c;
    padding: 5px;
}

nav {
    background-color: #0f3460;
    padding: 10px;
}

nav a {
    margin-right: 15px;
    color: #eaeaea;
}

nav a:hover {
    color: #ff5c8a;
}

/* Celebrate the delightful froge! */
.froge {
    font-size: 20px;
    margin: 20px;
    text-align: center;
}

.froge img {
    width: 50px;
    height: auto;
}

@media (max-width: 600px) {
    body {
        font-size: 14px;
    }

    nav a {
        display: block;
        margin-bottom: 10px;
    }

    button {
        width: 100%;
    }
}