/* Reset styles */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General styles */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0078d7, #00c6ff);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container styles */
.container {
    text-align: center;
    padding: 20px;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Header styles */
header {
    margin-bottom: 20px;
}

.logo {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.1rem;
    color: #eaeaea;
}

/* Button styles */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    text-decoration: none;
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 8px;
    transition: background 0.3s, transform 0.3s;
    text-align: center;
}

.btnx {
    text-decoration: none;
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 8px;
    transition: background 0.3s, transform 0.3s;
    text-align: center;
}

.btn-primary {
    background: #0078d7;
    color: #fff;
    font-weight: bold;
}

.btn-primary:hover {
    background: #005fbf;
    transform: scale(1.05);
}

.btn-secondary {
    background: #ff6f61;
    color: #fff;
    font-weight: bold;
}

.btn-secondary:hover {
    background: #e05d52;
    transform: scale(1.05);
}

.btn-sec {
    background: #13832f;
    color: #fff;
    font-weight: bold;
}

.btn-sec:hover {
    background: #13832f;
    transform: scale(1.05);
}

/* Footer styles */
footer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #eaeaea;
}
