.agenda {
    width: 70%;
    margin: auto;
    margin-top: 0;
}

.agenda h1 {
    font-weight: 100;
}

.event {
    margin: auto;
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid lightgray;
    padding-bottom: 4rem;
    max-width: 1500px;
}

.event:last-child {
    border-bottom:0;
}

.event-date {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
    margin-right: 2rem;
    align-items: end;
    font-family: Raleway;
    max-width: 180px;
}

@media only screen and (hover: none) and (pointer: coarse), only screen and (max-width: 1000px) {
    .event-date {
        display: none;
    }
}

.event-date h3 {
    font-size: 6rem;
    color:rgb(80, 80, 80);
    margin: 0;
}

.event-date p {
    font-size: 4rem;
    color:#25aae1;
}

.event-picture {
    flex: 2;
}

.event-text {
    margin-left: 50px;
    flex: 3;
    min-width: 500px;
    max-width: 700px;
}

.event-text a {
    color: #25aae1;
    font-weight: 400;
    text-decoration: none;
}

.event-text a:hover {
    text-decoration: underline;
}

@media only screen and (hover: none) and (pointer: coarse) {
    .event-text, .agenda-nothing {
        margin: auto;
        font-size: 2rem;
    }
}

@media only screen and (max-width: 1480px) {
    .event-text {
        max-width: 100%;
        margin-left: 0;
        min-width: fit-content;
    }
  }

.event-picture img {
    max-height: 30vh;
    min-height: 20vh;
    min-width: 20vh;
    object-fit: cover;
    width: 100%;
}

event-picture-small {
    min-height: 10vh;
}

.event-text h2 {
    margin:0;
    margin-top: -1rem;
    margin-bottom: 2rem;
    font-size: 3rem;
    font-weight: 100;
}

@media only screen and (max-width: 1480px) {
    .event-text h2 {
        text-align: center;
        margin-top: 2rem;
    }
  }

@media only screen and (hover: none) and (pointer: coarse) {
    .event-text h2 {
        margin-top: 2rem;
        text-align: center;
    }

    .agenda, .agenda-nothing {
        width: 95%;
    }
}

.agenda-nothing {
   margin: auto;
   margin-top: 3rem;
   margin-bottom: 3rem;
   text-align: center;
}