@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,100&display=swap');

*{ 
    font-family: 'Poppins', sans-serif;   
    text-align: center; 
    background-color: aqua; 
    color: black; 
    font: bold;
}  

h1{ 
    font-size: large;
} 
p { 
    font-size: small; 
    font: bold;
} 
body{ 
    margin: 30px; 
    padding: 30px;
} 
.btn{ 
    text-decoration: none;
    display:block;    
    margin: 25px; 
    background: white;  
    padding: 20px 5px ; 
    box-shadow: 5px 10px #888888; 
    color: rgb(0, 0, 0); 
    cursor: pointer; 
    font-size: large ; 
    font: bolder;
    } 
    .social-icons{
        margin-top: 30px; 
        margin-bottom: 30px; 
        margin: 5px;
    } 
    .btn:hover{  
        background: rgb(153, 152, 152);
        color: white; 
        transition: 1s;
    } 
    .profile-img{ 
        border-radius: 50%;
    }