/* .main .event-list{
    width: 600px;
    margin-left: 60px;
    margin-right: 60px;
}
img.event-img{
    height: 400px;
    width: auto;
    background: rgb(243, 237, 237);
}
p.event-info{
    margin-top: 0;
  
}
.event-item{
    clear: both;
    
}
.event-item:nth-child(odd) div.event-info {
    float: right;
}
.event-item:nth-child(odd) div.event-img {
    float: left;
}
.event-item:nth-child(even) div.event-info{
    float: left;
    
}
.event-item:nth-child(even) div.event-img{
    float: right;
} */
.events{
    padding-left: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
   padding-top: 30px;
   padding-bottom: 60px;
}
.events img{
    width: 250px;
    height: 375px;
    border:  3px solid rgb(3, 74, 166);
    border:  3px solid rgba(3, 74, 166, 0.725);
    border-radius: 5px;
   
}
 h3{
    padding-left: 60px;
    color: rgb(242, 95, 41);
    text-transform: uppercase;
   
  }

figcaption{
    font-size: 12px;
    width: 250px;
    padding-top: 10px;
}
.event-button{
        width: auto;
        height: auto;
        padding: 3px;
        margin-top: 10px;
        font-family: "lexend zetta", sans-serif;
        font-weight: 500;
        background-color: white;
        border: 2px solid rgb(242, 95, 41);
        border-radius: 5px;
        box-shadow: -3px 3px rgb(242, 95, 41);
       
        
      }
.event-button a{
    color: rgb(3, 74, 166);
}
      
.event-button a:hover{
    color: rgb(242, 95, 41)
}   

