html, body {
    margin: 0;
    height: 100%;
    font-family: 'Lato', sans-serif;
    overflow-y: hidden;
}

body {
    background-color: #0093E9;
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);    
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;



}

.rounded {
    border-radius: 25px;
    border: 1px solid #f4f7f5;
    padding: 20px 10px;
    width: 400px;
    background-color: #f4f7f5;
    box-shadow: 5px 5px 5px slategray;
    margin-left: 5px;
    margin-right: 5px;
}



img#avatar {
    max-width: 64px;
    max-height: 64px;
    border-radius: 50%;
}

.header {
    display: flex;
    justify-content: left;
    align-items: center;
}

.header img, .header h2 {
    margin: 5px;
    display: inline;
}

hr {
    color: slategray;
}

.links {
    text-align: left;
    display: inline-block;
}

.links a {
  text-decoration: none; 
  color: black; 
}