body {
    font-family: 'Lobster', cursive;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

.header {
    background-color: #fff;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header img {
    max-height: 60px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.editor {
    width: 90%;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.font-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.font-box {
    width: 30%;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    position: relative;
    padding: 15px;
    background-color: #f9f9f9;
}

.font-preview {
    font-size: 16px;
    margin-bottom: 10px;
}

.copy-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
}

#inputText {
    width: 100%;
    height: 100px;
    font-size: 16px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    padding: 10px;
}

@media (max-width: 768px) {
    .font-box {
        width: 100%;
    }
}