.landscape_format_message {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s, visibility 1s;
}

.landscape_format_message_container {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    height: 95vh;
    width: 95vw;
    background-color: #4589FF;
    color: white;
    font-size: 30px;
    transform: opacity 1s ease;
    opacity: 0;
}

.landscape_format_message.hidden {
    opacity: 1;
    visibility: visible;
}

.landscape_format_message_container.hidden {
    opacity: 1;
}