* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* background-color: rgb(83, 196, 130); */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./assets/gonzalo-remy-JCIJnIXv7SE-unsplash.png');
    width: 100%;
    height: 100%;
    background-position: center;
    /* background-repeat: no-repeat; */
    background-size: cover;
}

@media (max-width:432px) {
    body {
        background-size: unset;
    }
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 160px auto;

    h1 {
        margin: 30px;
        color: antiquewhite;
    }
}

img {
    cursor: pointer;
}

section {
    display: flex;
    flex-direction: row;
    margin: 20px auto;

    a {
        font-family: "Tektur", sans-serif;
        font-size: 20px;
        text-decoration: none;
        color: antiquewhite;
    }

    .event {
        cursor: pointer;
    }
}