main{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100%;

    background-image: url(../assets/fotohome.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

section.content{
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1, h2{
    font-family: var(--montserrat);
    font-weight: 500;
}

h2{
    font-size: 3rem;
}

h1{
    font-size: 4.3rem;
}

.wrapper{
    flex: 1 1 100%;
    text-align: center;
}

.titles{
    flex: 1 0 33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #eaeaea;
}

.contact{
    flex: 1 1 33%;

    display: flex;
    align-items: center;
}

.contact span{
    font-size: 2.8rem;
}

.contact i{
    font-size: 3rem;
    margin-right: 1rem;
}

.about{
    display: grid;
    place-items: center;

    min-height: 25vh;
    height: 100%;
    width: 100vw;
    background-color: rgba(22, 33, 58, 0.2); /* rgb(5, 63, 198) */ /* 115, 25, 51*/
    padding: 2rem
}

.about  p{
    font-size: 1.7rem;
    line-height: 1.4;
    font-family: var(--montserrat);
    max-width: 70rem;
}


@media (max-width: 729px){
    section.content{
        height: calc(100% - 85.63px);
    }
}