/* my_arts.css */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #2E2A2A; /* Barva pozadí */
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Zajišťuje, aby se fotografie přizpůsobila velikosti kontejneru */
}

.content {
    z-index: 1; /* Zajišťuje, aby obsah překrýval fotografii */
}
.carousel {
    width: 100%;
    height: calc(100% - 40px); /* Výška karuselu (odečítáme výšku čáry) */
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    bottom: 0;
    position: fixed;
    margin-bottom: 10px;

}

.carousel-content {
    font-family: Lora, serif;
    font-style: italic;
    font-weight: normal;
    font-size: 40px;
    line-height: 59px;
    color: #4A4545;
    cursor: grab;
    position: relative;
}



.rectangle {
    width: 50vw; /* Šířka 50% šířky prohlížeče */
    height: 60vh; /* Výška 30% výšky prohlížeče */
    max-width: 575px; /* Maximální šířka, aby se udržel obsah v rozumných mezích */
    max-height: 367px; /* Maximální výška, aby se udržel obsah v rozumných mezích */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;

    margin: 1vw;
    border-radius: 20px;
    text-decoration: none;
    transition: transform 0.3s ease; /* Plynulý přechod */


}
.rectangle:hover {
    transform: scale(1.05); /* Zvětší obdélník o 5% při najetí myší */
}

.text {
    text-align: center;
    font: normal normal bold 30px/40px Lora;
    letter-spacing: 12px;
    color: #2E2A2A;
    opacity: 1;
}

.white {
    background-color: #FFFFFF !important;
}

.pink {
    background-color: #F7D7D9 !important;
}

.rectangle a {
    text-decoration: none;
}
