#icons{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.icon {
    display: flex;
    gap: 25px;
    align-items: center;
    height: 15vh;
}

#content {
    grid-template-rows: auto 1fr;
}

.icon a {
    word-break: break-word;
    word-wrap: break-word;
    color: black;
    hyphens: auto;
    max-height: 100px;
    overflow: hidden;
    font-size: xx-large;
}

#rede-social{
    width: 150px;
    height: 30px;

}

input{
    height: auto;
    width: 70vw;
}

.botaoEnviarContato{
    height: 40px;
    width: 225px;
    border-radius: 10px;
}

@media (max-width: 1200px) {
    #icons{
        display: flex;
        flex-direction: column;
    }
}
@media (max-width: 500px) {
    #icons{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
    .nomeRedeSocial{
        display: none;
    }
}