/* mobile friendly */
@media only screen and (max-width: 600px) {
    .container {
        flex-direction: column;
    }
}

/* fonts */
.luckiest-guy-regular {
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  font-style: normal;
}
.darumadrop-one-regular {
  font-family: "Darumadrop One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* rest of css */
body {
    margin: 0;
    background-color: #FFEBB0;
}
h2 {
    font-family: "Luckiest Guy", cursive;
    color: #6C6C6A;
    padding: 2px;
    margin: 4px;
}
h1 {
    font-family: "Luckiest Guy", cursive;
    color: #6C6C6A;
}
p {
    font-family: "Darumadrop One", sans-serif;
    color: #6C6C6A;
    text-align: left;
}
header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #9CBBE5;
    width: 100%;
    height: 10rem;
    padding: 0.6px;
    text-align: left;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #9CBBE5;
    width: 100%;
    height: 3rem;
    padding: 0.6px;
    text-align: left;
}

a {
    padding: 8px;
    display: block;
    margin: 0.5em 1.5em;
    color: #6C6C6A;
    text-decoration: wavy underline;
    font-family: "Darumadrop One", sans-serif;
    text-align: center;
}

.content-left, .content-right {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    padding: 2px;
    border: 10px dotted #F99EAD;
}

.content-left p, .content-right p {
    flex: 1;
}

.content-left iframe, .content-right iframe {
    flex-shrink: 0;
}

.content-left img, .content-right img {
    flex-shrink: 0;
     width: 300px;        
    height: 300px;      
    object-fit: cover;
}
.carousel {
    position: relative;
    overflow: hidden;
    z-index: 10001;
}

.carousel-content {
    display: flex;
    margin: 150px 0 70px;
    transition: 500ms;
}

@media(max-width: 1024px) {
    .carousel-content {
        margin: 100px 0 50px;
    }
}

@media(max-width: 800px) {
    .carousel-content {
        margin: 70px 0 30px;
    }
}

.carousel-content img {
    height: 110vh;
    min-width: 100vw;
    max-width: 100vw;
    object-fit: cover;
}

.carousel-content video {
    min-width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    object-fit: fill;
}

.carousel .carousel-control-left {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 10%;
    cursor: pointer;
    z-index: 1;
}

.carousel .carousel-control-right {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 10%;
    cursor: pointer;
    z-index: 1;
}

