@charset "UTF-8";

body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    color: #fff;
}
h1 {
    margin-top: 20px;
    font-size: 2.5em;
}
.survey-list {
    width: 90%;
    max-width: 800px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.survey-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}
.survey-item:hover {
    transform: translateY(-5px);
}
.survey-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.survey-description {
    font-size: 1em;
    opacity: 0.8;
    margin-bottom: 15px;
}
.survey-date {
    font-size: 0.9em;
    opacity: 0.6;
    margin-bottom: 10px;
}
.survey-button {
    background-color: #ffffff;
    color: #2575fc;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}
.survey-button:hover {
    background-color: #e0e0e0;
}