@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
body{
    background: #393e46;
    font-family: Poppins;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}
@media (max-width: 400px){
    body{
        
    }
}
#title{
    display: inline-block;
    align-items: center;
    text-align: center;
    justify-content: center;
    max-width: 400px;
    max-height: 200px;
    margin: auto;
    color: #f2f2f2;
    padding: 10px;
}
#title .social{
    padding: 5px 10px;
    margin: 5px;
    justify-content: center;
    align-items: center;
    color: #5c636e;
    transition: color 0.2s ease-in;
}
#title .social:hover{
    color: #d8d8d8;
}
#top{
    font-weight: 200;
}

#name{
    font-weight: bold;
    color: #8dc6ff;
}

#name :hover{
    padding: 5px 10px;
}

#developedby{
    text-align: center;
    padding: 20px;
    
}

#developedby .madeby {
    color: #5c636e;      
}

#developedby .amadeby{
    color: #eeeeee;
    font-weight: bold;
}
#developedby .new{
    color: #5c636e;
    transition: color 0.2s ease-in;
}
#developedby .new:hover{
    color: white;
}

a{
    text-decoration: none;
}
a:hover{
    color: #d8d8d8;
}
