*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: inherit;
}

body{
    background-color: #def7ff;
    color: #0084af;
    font-size: 25px;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
}

div{
    padding: 25px;
}

h1{
    margin-top: 25px;
}

h1,
h3{
    font-weight: lighter;
}

section{
    padding: 25px;
}

.img-pfp{
    border-radius: 50%;
    margin: 0 auto;
    margin-top: 25px;
    width: 250px;
    cursor: pointer;
    transition: all 500ms ease-in-out;
}

.img-pfp:hover{
    transform: translate(-5px, -5px) scale(1.05);
    box-shadow: 5px 5px 10px 0 #006b8f;
}

a{
    background-color: #def7ff;
    border: 1px solid #0084af;
    color: #0084af;
    border-radius: 10px;
    padding: 5px 25px;
    cursor: pointer;
    text-decoration: none;
}

a:hover{
    background-color: #006b8f;
    color: #b7dbe7;
}

/* Skills page */

div.skills div{
    display: flex;
    flex-wrap: wrap;
}

div.skills section{
    text-align: start;
}

div.skills ul{
    margin-left: 25px;
}