html {
    font-family: "Courier New";
    color: #673f73;
    background: #f5f5f5;
    text-align: center;
    height: 100%;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    min-height: 130px;
    width: 450px;
    background: #f5f5f5;
    margin: 0 auto;
}

.main-container {
    background: #f5f5f5;
    width: 450px;
    margin: 0 auto;
    flex: 1;
    padding-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

footer {
    background-color: rgba(245, 245, 245, 0.6);
    height: 110px;
    width: 450px;
    margin: 0 auto;
    backdrop-filter: blur(1px);
    position: relative;
    bottom: 0;
    flex-shrink: 0;
}

.flashes {
    color: #b7250f;
}

.main-header {
    font-family: "Hina Mincho";
    margin-top: 0;
    font-size: 60px;
}

input[name="recent"] {
    font-family: "Courier New";
    color: #3657d4;
    background: none;
    text-decoration: underline;
    border: none;
}

.main-image,
.owo-image {
    height: 300px;
    width: 300px;
}

.suggestions-container {
    width: 140px;
    background-color: rgba(245, 245, 245, 0.6);
    border: none;
    padding: 20px;
    text-align: left;
    position: fixed;
    left: 5%;
    top: 45%;
    transform: translateY(-50%);
    transition: transform 0.3s ease, padding 0.3s ease, height 0.3s ease;
    backdrop-filter: blur(1px);
}

.suggestions-container .toggle-button {
    position: absolute;
    top: 5px;
    right: 5px;
    border: none;
    background: #673f73;
    color: white;
    width: 20px;
    height: 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 50%;
}

.suggestions-container.collapsed {
    height: 30px;
    overflow: hidden;
    padding: 5px;
    transform: translateY(-50%) translateX(-85%);
}

.suggestions-container.collapsed p,
.suggestions-container.collapsed ul {
    display: none;
}

@media screen and (max-width: 768px) {
    .suggestions-container {
        left: 2%;
        width: 220px;
    }
}

@media screen and (max-width: 480px) {
    .suggestions-container {
        left: 1%;
        width: 200px;
    }
}