body{
    text-align: center;
    font-family: serif, verdana, sans-serif;
    
    background: #a3c3ee;
}

#profilepic{
    width:200px;
    height:200px;
    
    border: 0;
    border-radius: 50%;
}

h1{
    font-size: 60px;
}

h3{
    font-size: 30px;
}

ul{
    list-style-type: none;
    display: flex;
    flex-direction: column;
    text-align: center;
}

li{
    background: #5ea5f6;
    border-radius: 5px;
    
    margin: 5px 250px 0 210px;
    
    font-size: 50px;
    text-decoration: none;
}

li a:hover{
    background: #678ec6;
    color: #2f3338;
    
    scale: 1.1;
    cursor: pointer;
    transition: 0.2s;
}

a{
    display: block;
    width: 100%;
    height: 100%;
    
    padding: 8px;
    
    text-decoration: none;
    font-weight: bold;
    
    color: #414952;
}

@media screen and (max-width: 62em){
    #profilepic{
        width:400px;
        height:400px;
        
        border: 0;
        border-radius: 50%;
    }
    
    h1{
        font-size: 100px;
    }
    
    h3{
        font-size: 50px;
    }
    
    li{
        margin: 20px 20px 0 0;
    }
    
    a{
        font-size: 100px;
    }
}