body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F3E2D0;
    font-family: 'Amiri', serif;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f5e8d0;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 360px;
    height: 90%;
    max-height: 740px;
    overflow: hidden;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.color-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
    width: 100%;
}

.color-box {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s;
}

.color-box:hover {
    transform: scale(1.1);
}

#feedback {
    font-size: 18px;
    margin-top: 20px;
}

.bottom-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    padding: 10px;
    box-sizing: border-box;
}

.arrow-button img, .home-button img {
    width: 50px;
    height: 50px;
}

.arrow-button, .home-button {
    text-decoration: none;
    transition: transform 0.3s;
}

.arrow-button:hover, .home-button:hover {
    transform: translateY(-2px);
}
