/* Reset e layout generale */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #4a98f7;
    min-height: 100vh;
}

/* HEADER */
.logo-container {
    display: flex;
    align-items: center; /* center items vertically */
    height: 60px; /* set height for container */
    background-color: #10475C;
}

.logo-image {
    width: 60px; /* set width for logo */
    height: 60px; /* set height for logo */
}

.logo-text {
    flex-basis: calc(100% - 60px);
    text-align: center;
    color: #F0F0C9;
}

/* MAIN CONTENT */
main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.clock-container {
    position: relative;
    display: inline-block;
}

#clock {
    border: 8px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

/* BOTTONI */
.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

button {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#speakBtn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
}

#speakBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,107,0.4);
}

#changeBtn {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
}

#changeBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78,205,196,0.4);
}

button:active {
    transform: translateY(0);
}

