.events {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px;
}

.event {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 1000px;
    margin: 50px;
}

.event-imgs {
    width: 400px;
    height: 400px;
    border: 10px solid var(--light-purple);
    border-radius: 25px;
}

.event__desc {
    margin-left: 50px;
}

.event__desc__title {
    font-size: 50px;
    margin-bottom: 20px;
}

.event__desc__date {
    color: var(--light-purple);
}

.event__desc__description {
    font-size: 20px;
    padding: 10px 0px;
    line-height: 35px;
}

.learn-more {
    margin-top: 20px;
    padding: 10px 50px !important;
    font-size: 30px !important;
}

@media screen and (max-width: 1200px) {
    .event {
        width: 900px;
    }
     
    .event-imgs {
        width: 300px;
        height: 300px;
    }
    
    .event__desc__title {
        font-size: 40px;
    }
}

@media screen and (max-width: 1050px) {
    .event {
        width: 800px;
    }

    .event-imgs {
        width: 300px;
        height: 300px;
    }
    
    .event__desc__title {
        font-size: 35px;
    }

    .event__desc__date {
        font-size: 20px;
    }
    
    .event__desc__description {
        font-size: 18px;
    } 
    
    .learn-more {
        margin-top: 10px;
        padding: 10px 50px !important;
        font-size: 20px !important;
    }
}

@media screen and (max-width: 920px) {
    .event {
        width: 700px;
    }

    .event-imgs {
        width: 250px;
        height: 250px;
        border: 5px solid var(--light-purple);
        border-radius: 10px;
    }
    
    .event__desc__title {
        font-size: 30px;
    }

    .event__desc__date {
        font-size: 20px;
    }
    
    .event__desc__description {
        font-size: 16px;
        line-height: 25px;
    } 
}

@media screen and (max-width: 800px) {
    .event {
        width: 600px;
    }

    .event-imgs {
        width: 225px;
        height: 225px;
    }
    
    .event__desc__title {
        font-size: 25px;
    }

    .event__desc__date {
        font-size: 18px;
    }
    
    .event__desc__description {
        font-size: 14px;
        line-height: 25px;
    } 
}

@media screen and (max-width: 680px) {
    .event {
        flex-direction: column;
        width: 350px;
    }

    .event-imgs {
        width: 250px;
        height: 250px;
    }

    .event__desc {
        margin-left: 0px;
        text-align: center;
        margin-top: 40px;
    }
    
    .event__desc__title {
        font-size: 30px;
    }

    .event__desc__date {
        font-size: 24px;
    }
    
    .event__desc__description {
        font-size: 18px;
        line-height: 30px;
    } 

    .learn-more {
        margin-top: 20px;
        padding: 10px 70px !important;
        font-size: 25px !important;
    }
}

@media screen and (max-width: 410px) {
    .event {
        flex-direction: column;
        width: 300px;
    }

    .event-imgs {
        width: 200px;
        height: 200px;
    }

    
    .event__desc__title {
        font-size: 25px;
    }

    .event__desc__date {
        font-size: 20px;
    }
    
    .event__desc__description {
        font-size: 16px;
        line-height: 30px;
    } 

    .learn-more {
        padding: 10px 50px !important;
    }
}

@media screen and (max-width: 350px) {
    .event {
        flex-direction: column;
        width: 250px;
    }

    .event-imgs {
        width: 200px;
        height: 200px;
    }

    
    .event__desc__title {
        font-size: 22px;
    }

    .event__desc__date {
        font-size: 18px;
    }
    
    .event__desc__description {
        font-size: 16px;
        line-height: 30px;
    } 

    .learn-more {
        padding: 10px 50px !important;
        font-size: 20px !important;
    }
}
