@import url("https://fonts.googleapis.com/css?family=Varela+Round");

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    letter-spacing: 1.1px;
}

body {
    font-family: "Varela Round", sans-serif;
    background: linear-gradient(135deg, #3498db, #8e44ad);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.menu li {
    margin: 0 15px;
}

.menu li a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: all 0.45s;
}

.menu li a:hover {
    color: #2ecc71;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
}

/* Logo Container */
.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 120px;
    height: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Action Name */
.action-name h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Speech to Text Box */
.STT {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
}

textarea {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
    padding: 0.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    resize: vertical;
}

button {
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #27ae60;
}
