@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&display=swap');

#designpromptly body {
    font-family: 'Roboto Slab', serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #F5F5F5;
}

#designpromptly header {
    background-color: #2A2F36;
    color: white;
    text-align: center;
    padding: 2rem;
}

#designpromptly main {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem;
}

#designpromptly .prompt-section, #designpromptly .color-section, #designpromptly .font-section {
    margin: 1rem;
    padding: 2rem;
    border: 2px solid #5A6378;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

#designpromptly h1, #designpromptly h2 {
    margin-bottom: 1rem;
}

#designpromptly button {
    background-color: #5A6378;
    color: white;
    font-size: 1rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
}

#designpromptly button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

#designpromptly button:active {
    background-color: #555;
    transform: translateY(0);
}

#designpromptly .color-palette {
    display: flex;
    justify-content: space-around;
    margin: 1rem 0;
}

#designpromptly .color-box {
    width: 100px;
    height: 100px;
    border: 2px solid #5A6378;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#designpromptly .color-code {
    color: white;
    font-size: 14px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    position: absolute;
}

#designpromptly .font-display {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}