@import url('https://fonts.googleapis.com/css2?family=Angkor&family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Fredoka:wght@300..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    padding: 0;
    margin: 0;
}

body {
    background-color: rgb(225, 225, 225);
    width: 100vw;
    height: 120vh;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: visible;
    overflow-x: hidden;
}

h1 {
    font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: normal;
    color: rgb(48, 9, 152);
    width: 100%;
    font-size: 4rem;
    text-align: center;
    padding-left: 2rem;
    padding-right: 2rem;
}

h2 {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
}

a {
    font-weight: 600;
}

p {
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.scroll-content {
    background-color: white;
    width: 80%;
    max-width: 80rem;
    min-height: 120vh;
    overflow: auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: center;
    gap: 2rem;
    overflow-x: hidden;
    z-index: 0;
}

.event-container {
    width: 80%;
    max-width: 50rem;
    min-height: 9rem;
    background-color: white;
    border-radius: 1rem;
    filter: drop-shadow(0 0 0.2rem rgba(0, 0, 0, 0.5));
    display: flex;
    flex-direction: row;
    justify-content: baseline;
    align-items: center;
}

@media only screen and (max-width: 600px) {
    .scroll-content {
        width: 100%;
    }

    .event-container > img {
        max-width: 4rem;
        max-height: 4rem;
    }

    body {
        background-color: white;
    }
  }

.event-container > img {
    height: 80%;
    max-width: 8rem;
    padding: 1rem;
    filter: drop-shadow(0 0 0.2rem rgba(0, 0, 0, 0.5));
}

.info {
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: baseline;
    padding: 1rem;
    min-width: 5rem;
}

footer {
    height: 12rem;

}

canvas {
    overflow-y: hidden;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    height: 100vh;
    z-index: 999;
  }
  