* {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

body {
    font-size: 1rem;
    width: 600px;
    margin: 0 auto;
}

@media only screen and (max-width: 599px) {
    body,
    .header_mobile_container-body,
    .footer__mobile-body {
        width: 100% !important;
    }
}

/* carousel */
.carousel img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel {
    min-height: 300px;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    cursor: grab;
}

.slide {
    flex: 0 0 100%;
    padding: 10px;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0008;
    color: white;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 10px;
}
.next {
    right: 10px;
}

.dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: white;
}
