.logo-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.logo-content {
    width: 50%;
}

.dropdown {
    position: absolute;
    right: 0;
}

.top-picture-header {
    color: white;
    font-size: 30px;
    text-align: center;
    white-space: pre-line;
}

.top-picture {
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.top-picture-description {
    color: white;
    padding: 20px;
    background: #000000b3;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    font-size: 20px;
    white-space: pre-line;
    height: 400px;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

.top-picture-cover,
.top-picture-slide {
    display: flex;
    flex-direction: row;
    contain: content;
    flex-wrap: nowrap;
    width: inherit;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.top-picture-slide>.top-picture {
    object-fit: cover;
    min-width: 800px;
    height: 400px;
    object-position: top;
}

.top-picture-slide-buttons {
    position: absolute;
    width: 800px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 400px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    contain: content;
}

.top-picture-slide-buttons>button {
    background: #00000059;
    height: 100%;
    border: 0;
    color: white;
    width: 51px;
    font-size: 40px;
    font-family: fantasy;
    transform: scaleY(2);
    transition: 0.3s;
}
.top-picture-slide-buttons>button:hover{
    cursor: pointer;
    background: #000000b3;
    transition: 0.3s;
}

.top-picture-slide-buttons>button.inactive{
    opacity: 0;
    cursor: not-allowed;
    pointer-events: none;
}