* {
    margin: 0;
    padding: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.conteiner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1b1b1b;
    height: 100dvh;
    color: whitesmoke;
}

img {
    height: 40vh;
}
main {
    width: 60%;
}

main {
    display: flex;
    justify-content: space-between;
    gap: 3.7rem;
}

main h3 {
    font-size: 1rem;
    color: silver;
}


main h1{
    font-size: 3.5rem;
    line-height: 1.5;
}

main p {
    font-size: 1.3rem;
    line-height: 1.4;
    color:silver;
}

main .intro{
    margin-block: 2rem;
}

main .icons {
    color: white;
    width: 60%;
    position: relative;
    top: 3rem;
}

main .icons > ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    list-style-type: none;
}

main .icons > ul li a {
    text-decoration: none;
    color: #acaca9;
}

main .icons > ul li a:hover{
    color: white;
    z-index: 2;
    transition: .3s ease-in-out;

}

i {
    color: white;
}


@media (max-width: 768px) {
    main {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 96%;
        gap: 2%;
        position: absolute;
        top: 18%;
    }

    .intro > * {
        font-size: 10pt;
    }

    .intro {
        text-align: center;
    }

    img{
        height: auto;
        width: 180px;
    }

    main .icons {
        width: 100%;
        top: 2rem;
    }
    main .icons ul {
        justify-content: center;
        gap: 16px;
    }

    main p {
        letter-spacing: 1.1px;
        line-height: 1.4rem;
    }

    main h3 {
        font-size: 12pt;
    }

    main  h3 > span{
        color: white;
        letter-spacing: 2px;
    }

    main h1 {
        font-size: 18pt !important;
        letter-spacing: 1.1px;
        line-height: 40pt;
    }

    /* .icons ul li {
        font-size: 14px;
    } */

}

