/*css*/
@font-face {
    font-family:"Okine";
    src: url(/fonts/MADEOkineSansPERSONALUSE-Regular.otf);
}
main{
    display: block;
    margin:0 auto;
    width: 80%;
}
h2{
    font-family: "Okine";
    font-size: 25px;
}
h3{
    font-family: "Okine";
    font-size: 35px;   
    justify-self: center; 
}
.container{
    display: flex;
    gap:23px;
    padding-bottom:180px;
}
.box{   
    display: flex;
    flex-flow: column;
    justify-content: center;
}
.description{
    flex:1;
    font-family: "Okine";
    font-size:16px;
    line-height: 26px;
    max-width: 80vw;
}
i{
    font-size: 16px;
}
.media{
    flex:2;
    width:100%;
    object-fit: contain;
}
.arrow{ 
    display: flex;
    align-self: end;
    align-items: center;
}
@media (max-width: 855px) {
.container{
    flex-flow:column;
    align-items: center;
}
.media{
    width: 375px; 
}
}


@media screen and (max-width: 425px){
.media{
    width:305px;
}
.description{
    flex-flow: column wrap;
    font-family: "Okine";
    justify-self: center;
    padding: 5px;
}
h3{
    font-size: 26px;  
}
h2{
    font-size:15px;
}
i{
    font-size: 12px;
}
.arrow{
    padding-top: 10px;;
}
}
