*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 330px;
    max-width: 350px;
    min-height: 100vh;
    background: #000;
    margin: auto;
}
.container{
    background: #fff;
    width: 100%;
    padding: 20px;
}
.contact-us{
    margin: 5px 10px;
    border: 1px solid #070c07;
    padding: 5px 10px;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;

}
header{
    width: 90%;
    margin: auto;
    margin-bottom: 20px;
    height: 40px;
    border-bottom: 1px solid #aeaeae;
}
header h2{
    margin: 10px;
    border-bottom: 1px  #aeaeae;
}

.contact-us span{
    margin: 0 5px;
}
.contact-us:hover{
    background: #dbd8d8;
    cursor: pointer;
}