html, body{
    padding: 0;
    margin: 0;
    height: 100%;
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-style: normal;
}

body{
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0377FC;
    color:white;
}

main{
    display: flex;
    flex-direction: column;
    max-width: 400px;
    padding: 15px;
}

.photo{
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo img{    
    height: 220px;
    width: 220px;
    border-radius:100%;
}

h1{

    margin-bottom:15px;
}

.presentation, .location{
    display: flex;
    flex-direction: row;
    margin-bottom: 15px;
}

.presentation img, .location img{
    max-height: 32px;
    max-width: 32px;
}

.presentation p, .location p{
    flex:1;
    margin:0;
    margin-left:15px;
}

.links{
    display: flex;
    flex-direction: column;
    padding-bottom:15px;
}

.links a{
    display: flex;
    flex-direction: row;
    padding: 15px;
    margin-top: 15px;
    background: #FC8803;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color:black;
    font-family: "Space Mono", monospace;
    font-weight: 700;
    font-style: bold;
}

.links a:hover{
    background: #f67804;
}

.links a:focus{
    background: #f06705;
}

.links a img{
    height: 32px;
}

.links a span{
    margin-left:15px;
}

@media only screen and (max-width: 600px) {
    body {
        align-items: unset;
    }
}