*{
    box-sizing: border-box;
}
body, html{
    background: #002834;
    margin: 0px;
    padding: 0px;
    font-family: "Open Sans", sans-serif;
}
aside ul{
    display: flex;
    justify-content: center;
    padding:0px;
}
aside ul li{
    border:none;
    width:60px;
    margin:0 20px;
}
aside ul li a{
    display: block;
    padding: 0px;
}
aside ul li a img{
    display: block;
    width:60px;
}
main{
    background: white;
    border-radius:15px;
    padding:20px;
    margin:2.5% auto 100px auto;
    max-width:600px;
    width: 95%;
}
figure{
    border-radius:50%;
    border:15px solid #EC681D;
    display: flex;
    height:300px;
    justify-content: center;
    margin:0 auto;
    padding:0px;
    width:300px;
    overflow: hidden;

}
figure img{
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
}
h1{
    color:#EC681D;
    text-align: center;
    font-weight: 700;
    width: 100%;
    font-size:30px;
}
h2{
    color: gray;
    font-weight: 300;
    width: 100%;
    text-align: center;
    padding: 0px;
    margin-top: -20px;
}
ul{
    list-style: none;
    padding: 0px;
}
li{
    align-items: normal;
    border: 1px solid #002834;
    border-radius:10px;
    display: flex;
    margin:10px 0;
    width:100%;
}
li div{
    border-radius:10px 0px  0px 10px;
    align-items: center;
    background-color: #002834;
    display: flex;
    justify-content: center;
    padding:10px
}
li div img{
    width:30px;
}
li a{
    width:100%;
    list-style: none;
    font-size: 14px;
    padding: 14px 20px;
    color: #EC681D;
    text-decoration: none;
}
footer{
    align-items: center;
    background: #EC681D;
    display: flex;
    position: fixed;
    bottom: 0px;
    left: 0px;
    justify-content: center;
    width: 100%;
}
footer img{
    width: 50px;
}