@media screen and (max-width: 1100px) and (orientation: portrait){
body{
rotate: 90deg;
width: 100vh !important;
height: 100vw !important;
}
}
@media screen and (hover: none) and (orientation: portrait){
body::after {
content: 'Поверните телефон в горизонтальное положение';
z-index: 999999;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.8);
color: white;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
}