@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    line-height: 40px;
    font-size: 20px;
}

nav ul li {
    padding-top: 10px;
    width: 200px;
}

.about-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
    transition: all 0.3s ease;
}

.about-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.about-section h3 {
    font-size: 18px;
    margin-top: 20px;
}

.about-section ul {
    list-style-type: disc;
    text-align: left;
    margin-left: 20px;
}

.about-section p {
    font-size: 16px;
    margin-top: 20px;
}

.about-section a {
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.about-section a:hover {
    color: #764ba2;
    transform: translateY(-1px);
}

.join-text {
    margin-bottom: 20px;
}

.about-theme-box {
    position: relative;
    bottom: 6px;
    outline: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.about-theme-box p {
    font-size: 14px;
}

#theme {
    margin: 18px 0px;
    border: none;
    border-radius: 25px;
    height: 35px;
    width: 150px;
    font-size: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}