html {
    background-color: rgb(193, 233, 221);
    background-repeat: no-repeat;
}

html, body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 45px;
    height: auto;
    margin: 0;
    min-height: 100%;
}

body {
    background: url('./images/background.jpg');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
}

body > .container {
    background-color: rgba(255, 255, 255, 0.9);
    padding-top: 3rem;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 5rem;
}

@media all and (min-width: 2020px) {
    html, body {
        font-size: 45px;
    }
}

@media all and (min-width: 1500px) and (max-width: 2020px) {
    html, body {
        font-size: 30px;
    }
    body > .container {
        max-width: 40rem;
    }
}

@media all and (min-width: 1024px) and (max-width: 2000px) {
    html, body {
        font-size: 20px;
    }
}

@media screen and (min-width: 375px) and (max-width: 1024px) {
    html, body {
        font-size: 14px;
    }
}

@media screen and (max-width: 590px) {
    body > .container {
        margin: auto 2rem;
    }
}

@media screen and (max-width: 375px) {
    html, body {
        font-size: 14px;
    }
}

header > h1 {
    background-image: url('./images/logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    height: 8rem;
    margin: 0 auto;
    text-indent: -9999px;
    width: 22rem;
}

main {
    align-items: center;
    background-image: url('./images/cuistot.png');
    background-position: top;
    background-repeat: no-repeat;
    background-size: 16rem;
    display: flex;
    flex-direction: column;
    padding-top: 12rem;
    row-gap: 1rem;
}

main > * {
    box-sizing: border-box;
    display: block;
    max-width: 22rem;
}

main > h2 {
    font-size: 2rem;
}

p.info {
    font-size: 1rem;
    text-align: center;
}

h2 {
    margin: 0rem;
}

p {
    margin: 0rem
}

p.subtitle {
    font-size: 0.9rem;
}

strong.highlight {
    font-size: 1.5rem;
    margin-top: 2rem;
    padding: 0 4rem;
    text-align: center;
}

div.info-list {
    column-gap: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 2rem;
}

div.info-item {
    background-color: rgba(187, 150, 235, 0.8);
    background-repeat: no-repeat;
    background-size: 20rem;
    border: 7px solid rgb(255, 0, 0);
    border-radius: 20px;
    display: flex !important;
    flex-direction: column;
    height: 14rem;
    margin: 0 5rem;
    padding: 0.5rem 1.5rem;
    position: relative;
    row-gap: 1.4rem;
    text-align: left;
    width: 18rem;
}

div.info-item > strong::before {
    font-family: FontAwesome;
    margin-right: 0.5rem;
}

.event > strong::before {
    content: "\f0a1";
}

.news > strong::before {
    content: "\f1ea";
}

div.info-item > strong {
    display: block;
    text-align: center;
}

div.info-item > p {
    font-size: 0.8rem;
}

.date {
    display: flex;
    column-gap: 0.5rem;
	position: absolute;
    bottom: 2rem;
	right: 1rem;
    font-size: 0.8rem;
    text-align: end;
}

.location {
    display: flex;
    column-gap: 0.5rem;
	position: absolute;
    bottom: 1rem;
	right: 1rem;
    font-size: 0.8rem;
    text-align: end;
}

.slick-prev:before, .slick-next:before {
    color: rgb(154, 103, 221);
    font-size: 40px;
    width: 40px;
    height: 40px;
}

.slick-prev {
    left: -48px;
}

.slick-next {
    right: -25px;
}