html {
    height: 100%;
}

body {
    box-sizing: border-box;
    min-height: 100%;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    font-family: "Segoe UI", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    background-color: #123456;
}

.branding {
    display: flex;
    align-items: center;
    background-image: url("thumbnail.png");
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 36px;
    font-size: 24px;
    letter-spacing: -0.04rem;
    font-weight: 400;
    color: white;
    text-decoration: none;
    margin-bottom: 20px;
}

.message-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
}

.message {
    font-weight: 300;
    font-size: 1.5rem;
    background-color: #8a2eb2;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#error {
    display: none;
}

#error .message {
    display: none;
}

#error .error-message {
    display: block;
}

.error-message {
    display: none;
    font-weight: 300;
    font-size: 1.3rem;
}

.error-text {
    color: red;
    font-size: 1rem;
}

#icon {
    background-color: #8a2eb2;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

#icon label {
    margin-bottom: 10px;
    font-weight: bold;
    display: block;
}

#searchInput {
    padding: 10px;
    font-size: 16px;
    width: calc(100% - 22px);
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #123456;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #abcdef;
}

#navigation {
    margin-top: 20px;
}

#nav-links {
    list-style-type: none;
    padding: 0;
}

#nav-links li {
    margin: 5px 0;
}

#nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

#nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}