@import url('https://fonts.googleapis.com/css?family=Oswald|Roboto|Tajawal');
* {
    padding: 0;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;
    font-family: 'Oswald', sans-serif;
}
h1,
h2,
h3,
h4 {
    font-family: 'Roboto', sans-serif;
}
nav {
    background: #FC575E;
}
nav ul {
    display: block;
    list-style: none;
}
nav ul li {
    display: inline;
}
a {
    display: inline-block;
    text-decoration: none;
    color: #FFF;
    height: 60px;
    padding-top: 17px;
    width: 150px;
}
a:hover {
    background: #fff;
    color: #FC575E;
}
img {
    margin-top: 60px;
    margin-bottom: 12px;
    border-radius: 50%;
    max-width: 15%;
    border: 1px solid grey;
}
h1 {
    margin-top: 20px;
    font-size: 72px;
    color: #FC575E;
}
h2 {
    color: #FC575E;
    margin-bottom: 50px;
}
h3 {
    color: grey;
    margin-top: 20px;
    margin-bottom: 5px;
}
footer {
    margin-top: 60px;
}
footer p {
    font-size: 11px;
    color: gray;
    margin-bottom: 1rem;
}
