@font-face {
    font-family: "SF-Pro-Display-Thin";
    src: url('../assets/fonts/SF-Pro-Display-Thin.eot'); /* IE9 Compat Modes */
    src: url('../assets/fonts/SF-Pro-Display-Thin.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../assets/fonts/SF-Pro-Display-Thin.woff') format('woff'), /* Pretty Modern Browsers */
         url('../assets/fonts/SF-Pro-Display-Thin.ttf')  format('truetype'); /* Safari, Android, iOS */
    font-style: normal;
    font-weight: normal;
  }
  .logo-font {
    font-family: "SF-Pro-Display-Thin";
  }

body {
    padding: 3rem;
}

header {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

header>span {
    padding: 30px 0;
    text-transform: uppercase;
    line-height: 1.2;
}

header>nav>span {
    padding-right: 10px;
}

.active {
    color: #ac35b9;
    font-style: oblique;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-picture {
    display: flex;
    width: 100%;
    padding: 30px 0;
}
h1 {
    font-size: 24px;
    font-weight: 500;
    width: 100%;
}

p {
    font-size: 20px;
    padding: 20px 0;
}

b {
    font-weight: 400;
}

@media screen and (min-width: 500px) {
	@media screen and (min-width: 500px) {
        body {
            padding: 10% 15% 0 15%;
        }
        h1 {
            font-size: 30px;
        }
        .profile-picture {
            width: 40%;
        }
        
        body>footer {
            font-size: 16px;
        }
    }
}