* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f0f0f0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.title {
    color: #333;
    font-weight: 700;
    margin: 20px 0;
    text-shadow: 1px 1px 1px #000;
}

.settings {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

label {
    margin: 10px 0 5px;
    font-weight: 400;
}

input[type="text"],
input[type="number"],
select {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    max-width: 200px;
    cursor: pointer;
    color: inherit;
}

button {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    padding: 8px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

.pyramid {
    top: 0;
    left: 0;
    font-size: 20px;
    line-height: 1.5;
    white-space: pre-wrap;
    text-align: center;
    padding: 10px;
}
