.inf-middle{
    display: flex;
    justify-content: center;
    margin: 40px;
    @media screen and (max-width: 900px){
        margin: 0;
    }
}

.inf-home{
    color: #666;;
    border-radius: 10px;
    z-index: 2;
    width: 80%;
    padding: 20px;
    display: flex;
    align-items: center;
}

.inf-home img{
    width: 100%;
    border-radius: 3px;
    transition: 0.5s ease;
    @media screen and (max-width: 900px){
        display: none;
    }
}

.img-text{
    position: relative;
}

.img-text:hover img{
    -webkit-filter: brightness(60%);
}

.img-text p{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0);
    transition: color 0.5s ease;
}

.img-text:hover p{
    color: white;
}

.inf-home h1{
    text-align: center;
    padding-bottom: 30px;
    font-size: xxx-large;
    @media screen and (max-width: 900px){
        font-size: xx-large;
        font-weight: bold;
    }
}

.inf-home h3{
    font-size: xx-large;
    text-align: center;
    @media screen and (max-width: 900px){
        font-size: x-large;
        font-weight: bold;
    }
}

.inf-home h5{
    font-size: larger;
    margin-bottom: 8px;
    @media screen and (max-width: 900px){
        font-size: large;
    }
}

.inf-home p, .inf-home ul{
    font-size: small;
    margin-bottom: 8px;
}

.inf-home a{
    text-decoration: none;
}

.inf-home button{
    background: rgba(0, 0, 0, 0.1);
    border: none;
    padding: 0.5rem 0.6rem;
    border-radius: 3px;
    display: flex;
    align-items: center;

    i{
        padding-left: 0.5rem;
        font-size: small;
    }
}

.inf-home button:hover{
    background: #bebebe;
    transition: all 100ms ease-in-out;
}