#principal {
    width: 100%;
    min-height: 100vh;
    background-color: var(--cor-principal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

#principal #titulo {
    position: absolute;
    top: 100px;
    left: 100px;
}

#principal p {
    font-size: 36px;
    color: white;
}

#principal #homeFundo {
    height: 500px;
    position: absolute;
    right: 0;
}

#links{
    z-index: 2;
    position: absolute;
    left: 100px;
    bottom: 150px;
    width: calc(100% - 100px);
    display: flex;
}

#links a{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 0px;
    cursor: pointer;
    margin-right: 15px;
    height: 120px;
    width: 280px;
    transition: 0.5s;
    text-decoration: none;
}

#links a p{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#links a:first-child{
    background-color: #04D361;
}

#links a:first-child:hover{
    background-color: #20dd75;
    transition: 0.5s;
}

#links a:last-child{
    background-color: #3AD1D0;
}

#links a:last-child:hover{
    background-color: #5ae9e9;
    transition: 0.5s;
}