*{
    font-family: sans-serif;
    
    margin: 0;
    text-decoration: transparent;
}

a{
    padding: 5px;

    color: #ffffff;   
}

body{
    background-color: #000000;
}

header{
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1;

    background-color: #101010;
    color: #ffffff;
}

header > div{
    display: flex;
    align-items: center;
    margin: 0 5px;
}

.menu:after{
    content: "▼";
}

.button{
    display: flex;
    justify-content: center;
    align-items: center;
    
    border-radius: 20px;
    background-color: #3498db;
}

header img{
    width: 25px;
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;

    margin: 0 25px;
    background-color: #101010;
    height: 100%;
}

.crowd{
    width: 500px;
    height: 250px;
}

body > main > div{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px;
}

.event{
    height: 400px;
    width: 300px;
    position: relative;
    margin: 10px;

    background-color: #ffffff;
}

.event > img{
    width: 300px;
    height: 168px;
}

.event > .date{
    position: absolute;
    top: 170px;
    left: 5px;

    color: #000000;
    text-decoration: underline;
}

.event > .title{
    position: absolute;
    bottom: 160px;
    left: 10px;
}

.event > .description{
    position: absolute;
    top: 245px;
    left: 5px;
}

.event > .button{
    position: absolute;
    bottom: 5px;
    left: 111px;
}