.StepsCont{
    width: 100%;
    height: 100%;

    align-items: center;
    justify-content: center;

    position: absolute;
    left: 0;
    top: 0;
}

.Step{
    width: 80%;
    height: auto;
    background-color: rgba(245, 245, 245, .8);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 10px -3px black;
    margin-top: 20rem;
    align-items: center;
    justify-content: center;
    display: flex;

    position: relative;
    left: 50%;
    transform: translatex(-50%);
}

.Step img{
    width: 23rem;
    margin-left: 0%;
    border-radius: 2rem;
}

.Step p{
    text-align: center;
    font-size: 2rem;
}

.Step p strong{
    font-size: 3rem;
}



footer{
    width: 100%;
    height: 3rem;
    color: white;
    background-color: rgba(0, 0, 83, .7);
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    position: relative;
    top: 41vh;
}





@media only screen and (max-width: 991px){
    .Step p{
        font-size: 1.3rem;
    }

    .Step p strong{
        font-size: 2rem;
    }
}