@import url('https://fonts.googleapis.com/css2?family=Dongle&display=swap');
*{
    margin: 0;
    padding: 0;
}
h1{
    color: white;
    text-align: center;
}
p{
    font-family: 'Dongle',sans-serif;
    font-size: 36px;
    color: white;
    text-align: center;
}

/** above click **/
.logo {
    width: 150px;
    float:left;
    margin-top: 10px;
    list-style: none;
    padding-left: 150px;
} 
.logo img:hover{
    scale: 1.1;
    transition: .3s;
}
.contact{
    float: right;
    list-style: none;
    margin-top: 30px;
    padding-right: 68px;
}
.contact li{
    display: inline-block; 
}
.contact li a {
    color: white;
    text-decoration: none;
    padding: 5px 22px;
    font-family: 'Dongle',sans-serif;
    font-size: 30px;
    transition: transform 0.2s, background 0.2s, color 0.2s;
    display: inline-block;
    border-radius: 2%;

}
.contact li a:hover{
    background:white;
    color: #333;
    transform: scale(1.1);
    transition: transform 0.2s, background 0.2s, color 0.2s;
}