.baner img{

}
.short img{
    width: 100px;
}
.newsletter img{
    width: 50px;
}
.main{
    width: min(1200px,90%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    padding-bottom: 20px;
}
.baner{
    position: relative;
    grid-column: span 5;
}
.shorts{
    grid-column: span 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.newsletter{
    display: flex;
    flex-direction: column;
    place-items: center;
    margin-right: 10px;
    grid-column: span 2;
    order:1;
}
.article {
    grid-column: span 3;
    grid-row: span 2;
    text-align: justify;
}
.short img:hover{
    box-shadow: 1px 1px 20px rgb(64, 66, 55);
    border-radius: 50%;
}
.short p{
    text-align: center;
    padding: 0;
    margin: 0;
}
.selected{
    display: block !important;
}
.items img{
    display: none;
    width: 100%;
    height: 100%;
}
.items{
    height: 100%;
}
.left, .right {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100px;
    display: grid;
    place-items: center;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.3s;
}
.left:hover, .right:hover{
    background-color: rgba(14,173,105,0.8);
}
.left {
    left: 0;
}
.right {
    right: 0;
}
.desc, .form{
    display: flex;
}
.desc h2{
    font-size: 18px;
    padding-left: 10px;
}
.form input{
    font-size: 20px;
    border: 3px solid black;
    background-color: #eef5db;
    text-align: center;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 10px 0;
}
.form button{
    font-size: 16px;
    border: 3px solid black;
    background-color: #eef5db;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-left: none;
    font-weight: bold;
    transition: 0.3s;
}
.form button:hover{
    background-color: #0ead69;
    cursor: pointer;
}
@media screen and (max-width: 1000px) {
    .main{
        grid-template-rows: 0.5fr 2fr 0.6fr;
    }
    .baner {order:0;}
    .shorts {
        height: 150px;
        grid-column: span 5;
        order:2;
    }
    .newsletter {
        grid-column: span 5;
        order:2;
    }
    .article {
        grid-row: span 1;
        grid-column: span 5;
        order:1;
    }
    .left, .right {
        width: 80px;
    }
}
@media screen and (max-width: 700px) {
    .main{
        grid-template-rows: 0.3fr 2fr 0.6fr;
    }
    .left, .right {
        width: 50px;
    }
}