@import url('https://fonts.googleapis.com/css2?family=Kosugi&family=Kosugi+Maru&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Kosugi Maru", sans-serif;
    color: #2F0000;
    transition: 0.2s;
}

#logoimg {
    position: relative;
    top: 5px;
    left: 2%;
    width: 6%;
    min-width: 70px;
}

#words {
    position: absolute;
    width: 38%;
    object-fit: cover;
    /* opacity: 100%; */
    z-index: 200;
    /* transition: opacity 0.5s; */
}

.oceantitle {
    top: 10%;
    left: 13%;
}

.carousel-cont {
    position: relative;
    top: -60px;
    width: 80%;
    min-width: 90vw;
    min-height: 90vh;
    overflow: hidden;
    margin: 60px auto;
}

#carousel {
    position: relative;
    width: 40%;
    /* height: 150%; */
    left: 10%;
    border: 2px solid #2F0000;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

#carousel2 {
    position: relative;
    left: 9.4%;
    width: 40%;
    /* height: 150%; */
    border: 2px solid #2F0000;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: #2F0000;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

#ar2 {
    opacity: 0;
}

.arrow:hover {
    font-size: 2.7rem;
}

.arrow-right {
    right: 20px;
}

.dropdown {
    position: absolute;
    width: 20%;
    top: 30px;
    left: 40%;
    text-align: center;
    z-index: 999;

    color: #2F0000;
    font-family: "Kosugi Maru", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.dropdown select {

    appearance: none;
    width: 30%;
    padding: 0.5rem;
    /* background-color: #fff; */
    /* border: 1px solid #caced1; */
    border-radius: 1rem;
    color: #000;
    cursor: pointer;
    text-align: center;

    color: #2F0000;
    font-family: "Kosugi Maru", sans-serif;
    font-weight: 400;
    font-style: normal
}

.btn {
    position: relative;
    top: 5px;
    scale: 1.3;
    left: 36%;
    z-index: 1000;
    border: none;
    background: none;
    transition: 0.2ms;
}

.toggleDark {
    background-color: rgb(32, 32, 32);

    .arrow {
        color: white;
    }

    #logoimg,
    .btn,
    .dropdown {
        filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
    }
}

@media (max-width:1920px){
    .oceantitle {
        top: 7%;
    }
}

@media (max-width:1440px){
    .oceantitle {
        top: 6%;
    }
}