:root {
    --accent-color: #D779FF; /* Accent color */
    --body-color: #ffffff; /* White */
    --background-color: #000000; /* Black */
}

body {
    background-color: black;
    color: var(--body-color);
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    line-height: 1.5;
}

.container {
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
    padding: 60px 20px 80px 20px;
}

.logo {
    max-width: 300px;
}

h1 {
    margin-bottom: 20px;
    font-size: 2.5rem; /* Lowered size */
    font-style: italic;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
}

@media (min-width: 600px) {
    h1 {
        font-size: 3.5rem; /* Original size */
    }
}

h2 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 900;
    text-transform: uppercase;
}

p {
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.button {
    background: var(--accent-color);
    border-radius: 4px;
    color: var(--background-color);
    padding: 20px 20px;
    text-decoration: none;
    border-radius: 0;
    transition: background 0.3s, transform 0.3s;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button:hover {
    transform: translateY(-2px);
}

.sessions {
    margin-top: 60px;
}

.sessions h2 {
    margin-bottom: 10px;
}

.sessions ul {
    list-style-type: none;
    padding: 0;
}

.sessions li {
    margin-bottom: 10px;
}