#one_section {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Noto Serif", serif;
    height: 100vh;
}

#tanitim {
    width: 80vw;
}

#tanitim button {
    background-color: #2e2f33;
    color: white;
    padding: 8px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

#tanitim button:hover {
    transform: rotate(-3deg);
    background-color: teal;
    border: 1px solid teal;
}

#baslik {
    position: relative;
    font-size: 50px;
}

.carousel-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item img {
    height: 100vh !important;
    object-fit: contain;
}

.carousel-indicators button {
    height: 10px !important;
    border-radius: 10px !important;
}

.carousel-indicators .active{
    background-color:#2e2f33 !important;
    opacity: 1 !important;
}

@media (max-width: 992px) {
    .carousel-item img {
        height: calc(100vh - 60px);
        max-height: 100vh;
        width: 100%;
        object-fit: contain;
    }

    #one_section {
        padding-top: 70px;
    }

    #baslik {
    position: relative;
    font-size: 30px;
}
}