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

body {
    font-family: "Inter", Arial, sans-serif;
    background: rgb(255, 62, 62);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Center card */
.app-container {
    text-align: center;
    padding: 100px 140px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Styling text */
.style-choice {
    font-size: 5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.recommended-temp {
    font-size: 4rem;
    font-weight: 500;
    color: #666;
}
button {
    position: absolute;
    left: 50%;
    margin-top: 600px;
    transform: translateX(-50%);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 14px;
    background: #fff;
    font-family: system-ui, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* keep the centering AND add the movement */
button:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

button:active {
    transform: translateX(-50%) translateY(0);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}