:root {
    --theme-background-color: #090812;
    --theme-accent-color: #46417a;
}

#landing {
    padding: 200px 10%;
}

.event-name {
    font-family: Nexa, 'Palatino Linotype', sans-serif;
    font-size: 33px;
    margin-bottom: 10px;
}

.event-name span {
    color: #474747;
}

.event-date {
    font-family: Gotham, 'Palatino Linotype', sans-serif;
    font-size: 20px;
    color: #763ebf;
    margin-bottom: 40px;
}

.event-description {
    font-family: Gotham, 'Palatino Linotype', sans-serif;
    font-weight: 300px;
    font-size: 20px;
    color: #282828;
    max-width: 500px;
    margin-bottom: 40px;
}

.event-description span {
    color: var(--theme-accent-color);
}

.event-button {
    font-family: Gotham, 'Palatino Linotype', sans-serif;
    background-color: var(--theme-purple);
    border: none;
    border-radius: 33px;
    font-size: 16px;
    padding: 10px 30px;
    width: 100%;
    max-width: 480px;
    margin-bottom: 10px;
    transition: background-color 0.2s ease-in;
}

.event-button a {
    text-decoration: none;
    color: #fff;
}

.event-button:hover {
    background-color: #a685fa;
    transition: background-color 0.2s ease-in;
}

.speaker-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.speaker-heading {
    font-family: Nexa, 'Palatino Linotype', sans-serif;
    text-align: center;
    padding: 0 10%;
    font-size: 30px;
    margin-bottom: 50px;
}

.speaker-heading span {
    color: var(--theme-accent-color);
}

.speaker {
    padding: 0 10%;
    max-width: 250px;
}

.speaker-photo {
    width: 100%;
    border-radius: 10px;
}

.speaker-info {
    font-family: Gotham, 'Palatino Linotype', sans-serif;
    margin-left: 15px;
    margin-bottom: 40px;
}

.speaker-name {
    font-weight: 500;
    font-size: 25px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.speaker-year, .speaker-field  {
    font-weight: 300;
}

@media screen and (min-width: 1024px) {
    #landing {
        padding-left: 250px;
    }

    .event-name {
        font-size: 50px;
    }
    
    .event-date, .event-description {
        font-size: 26px;
    }

    .event-buttons {
        display: flex;
        
    }

    .event-button {
        width: 220px;
        margin-right: 10px;
        font-size: 18px;
    }

    .speaker-row {
        display: flex;
        flex-direction: row;
    }

    .speaker {
        padding: 10px 30px;
    }
}
