*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--primary-font-family);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
}

.carousel {
    height: 300px;
    position: relative;
    width: 500px;
    overflow: hidden;
}

.carousel button {
    position: absolute;
    box-sizing: content-box;
    display: flex;
    top: 45%;
    font-size: 2rem;
    z-index: 1;
    border: 0;
    background-color: transparent;
    opacity: 0.8;
    align-items: center;
    padding: 0rem 0.5rem;
    cursor: pointer;
}

.carousel button:last-child {
    right: 0;
}

.carousel ul,
.carousel ul li {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    list-style-type: none;
    margin: 0;
}

.carousel ul li div {
    width: 100%;
    height: 100%;
    background: darkgray;
    font-size: x-large;
    align-items: center;
    display: flex;
    justify-content: center;
}

.carousel ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel ul li video {
    width: 100%;
}
