h1{
    text-align: right;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: large;
    font-style: normal;
    margin-right: 10px;
}

h2{
    text-align: center;
    font-family: "bebas-neue-pro", sans-serif;
    font-weight: bolder;
    font-style: normal;
    font-size: 5em;
    margin: 45px;
}

h3{
    text-align: center;
    font-family: "bebas-neue-pro", sans-serif;
    font-style: normal;
    font-size: 4em;
    margin-left: 0px;
}

h4{
    text-align: center;
    font-family: "bebas-neue-pro", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 2.2em;
}

p{
    font-family: "bebas-neue-pro", sans-serif;
    text-align: left;
    font-size: 1.5em;
    margin-left: 175px;
    margin-right: 175px;
    margin-top: 50px;
}
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

nav{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 2.5em;
    margin-right: 20px;
    text-align: center;
    gap: 45px;
}

.image-text-container {
    display: flex;
    align-items: center; 
    justify-content: center;
    gap: 160px;
}

.image-text-container img {
    max-width: 100%;
    height: auto;
}

.image-text-container p {
    max-width: 500px;
    font-size: 1.2em;
}

.div{
    font-family: "bebas-neue-pro", sans-serif;
    font-size: 2.5em;
}

body{
    background-color: #bed4ef;
    color: #00242c;
}

a{
    color: #00242c;
}

.carousel {
    position: relative;
    width: 600px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.slide {
    display: none;
    width: 100%;
    height: 400px;
    text-align: center;
    line-height: 400px;
    color: white;
    font-size: 24px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    display: block;
    animation: fade 0.5s ease-in-out;
}

.control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 24px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
    z-index: 10;
}

.control.left {
    left: 10px;
}

.control.right {
    right: 10px;
}

.control_dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.control-dot {
    width: 11px;
    height: 16px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    justify-content: center;
    align-items: center; 
}

.control-dot.active {
    background: rgba(255, 255, 255, 0.8);
}

@keyframes fade {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}

.gallery{
    display: flex;
    flex-wrap: wrap;

}

.gallery-item{
    flex: 0 0 25%;
}

.gallery img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

