body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
	margin: 0;
    padding: 0;
}

.container {
	width: 60vw;
	height: 40vh;
}

.description {
    font-size: 3vh;
    text-align: center;
    color: #333;
    font-family: Arial, sans-serif;
}


.title {
    font-size: 6vh;
    text-align: center;
    color: #333;
    font-family: Arial, sans-serif;
}

textarea {
    width: 100%;
	height:90%;
	font-size: 2vh;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: white;
	justify-content:center;
	font-family: 'Courier New', monospace;
}

/* Styling for buttons */
button {
    padding: 2vh 3vw;
    font-size: 1.5vw;
    border: 1px solid #ccc;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    margin: 2vh 1vw;
	border-radius: 5px;
}

button:hover {
    background-color: #45a049;
}

.buttons-top, .buttons-bottom {
    display: flex;
    justify-content: center;
    gap: 1 vh;
    margin-bottom: 1 vh;
}