*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background: #181818;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

h2 {
    margin-top: 50px;
    font-family: Ubuntu;
    text-align: center;
    color: #44f1a6;
}

.slideshow-container {
    position: relative;
    width: 55%;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    padding-top: 30px;
}

.slide {
    display: none;
    width: 100%;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.description {
    color: white;
    padding: 10px;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    margin-top: -5px;
    font-family: ubuntu;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(203, 201, 201, 0.3);
    color: white;
    font-size: 24px;
    border: none;
    border-radius: 50%;
    transition: 0.3s;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
    background: rgba(255, 255, 255, 0.6);
}

.counter {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(78, 77, 77, 0.6);
    backdrop-filter: blur(10px);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 17px;
    font-weight: bold;
}

.backToMain {
    position: fixed;
    top: 10px;
    left: 10px;
}

.backToMain a{
    text-decoration: none;
    color: white;
    font-family: ubuntu;
    font-size: 17px;
}

.backToMain a:hover {
    color: #44f1a6;
}

@media only screen and (max-width: 750px){
    .slideshow-container {
        width: 90%;
        margin-top: 50%;
    }
}
