@font-face {
    font-family: 'Waxe';
    src: url('fonts/Waxe.otf') format('opentype'),
         url('fonts/Waxe.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slides .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}


.slides .slide:first-child {
    opacity: 1; /* Show the first slide by default */
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.5s;
    width: 50px; 
    height: 50px;
    font-size: 20px; 
}

.left-nav {
    left: 20px;
}

.right-nav {
    right: 20px;
}

.slider .nav {
    opacity: 1;
}

.centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(255, 255, 255); /* Ensuring text color is black */
    text-align: center;
    font-family: 'Waxe', sans-serif;
}

.centered-text .line1 {
    font-size: 88px; /* Example of a larger font size for the first line */
    font-weight: bold; /* Optional: if you want the first line to be bold */
}

.centered-text .line2,
.centered-text .line3 {
    font-size: 20px; /* Normal font size for the 2nd and 3rd lines */
}

