body {
    margin: 0;
    font-family: Sofia, sans-serif;
}

.navbar {
    background-color: dodgerblue;
    overflow: hidden;
    position: sticky;
    top: 0;
    width: 100%;
}

.navbar a {
    float: left;
    display: block;
    color:darkorange;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.navbar a:hover {
    background-color: darkorange;
    color: dodgerblue;
}

.overview {
    text-align: center;
}

.profile-wrapper {
    display: flex;
    width: 20%;
    margin: 0 auto;
}

.navbar-ext {
    display: flex;
    flex-direction: column;
}

.navbar-ext a {
    font-size: 33px;
    display: flex;
    color: darkorange;
    padding-bottom: 20px;
}

.navbar-ext a:hover {
    color: dodgerblue;
}

.about {
    text-align: center;
}

.iOS {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 0 auto;
}

.iOS-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.iOS-links a {
    padding: 11px;
}

.iOS-links img:hover {
    opacity: 0.8;
}

.iOS-project {
    width: 200px;
}

.web {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 0 auto; 
}

.web-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.web-links a {
    padding: 11px; 
}

.web-project {
    display: flex;
    flex-direction: column;
}

.reverb-clone-logo {
    width: 150px;
    height: 150px;
    background-color: orange;
}

.skills {
    width: 33%;
    margin: 0 auto;
}

.contacts {
    width: 33%;
    margin: 0 auto;
}

@media screen and (max-width: 600px) {
    .navbar a {
        float: none;
        display: block;
        text-align: left
    }
}
