#landscape-view, #portrait-view {
    display: none;
}
#portrait-view{
height:95vh;
width: 100%;
h1 , p{
    display: flex;
    align-items: center;
    justify-content: center;
}
}


@media (orientation: landscape) {
    #landscape-view {
        display: block;
    }
}


@media (orientation: portrait) {
    #portrait-view {
        display: block;
    }
}
