*, *::before, *::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

:root{
    --theme-yellow: #ff9900;
    --theme-gray: #333333;
    --theme-whilte: #ffffff;
    --theme-darkgray: #222222;
    --theme-darkbrown: #200101;
}

.txt-part{
    color: var(--theme-whilte);
    font-family: 'Poppins', sans-serif;
}

.contact-icon{
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
    border-radius: 50%;
    background: var(--theme-darkgray);
    color: var(--theme-whilte);
}

.contact-items i, p{
    font-size: 1.2rem;
}

@media screen and (max-width: 576px){
    .contact-icon{
        min-width: 30px;
        max-width: 30px;
        min-height: 30px;
        max-height: 30px;
    }

    .contact-items i, p{
        font-size: 1.0rem;
    }    
}
