/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Background */
body {
    background: #f7f3ee;
    color: #5d4037;
    text-align: center;
    padding: 20px;
}

/* Container */
.container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Title */
h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Description */
.description {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #5d4037;
}

/* Link Container */
.link-container {
    text-align: center;
    margin-top: 20px;
}

/* Button Style */
.btn {
    display: inline-block;
    background: #8d6e63;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #6d4c41;
}
