@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

h1, h2, h3, h4, h5, h6, span{
    color: #242424;
    line-height: 1.5;
    text-align: center;

}

h1 {
    font-size: 36px;
}

p {
    line-height: 1.5;
    font-size: 16px;
}

li {
    list-style: none;
}

.flex {
    display: flex;
}

.flex-1 {
    flex: 1;
}

.text--blue{
    color: #22577a;
}

.row {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* 
Nav Bar
*/

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    height: 100px;
    margin: 0 auto;
}



.nav__link--list {
    display: flex;
    /* list-style: none; */
    align-items: center;
    justify-content: center;

}

.nav__link--anchor {
    margin: 0 12px;
    color: #242424;
    text-decoration: none;
    font-weight: 700;
}

.nav__link--anchor-primary {
    background-color: #22577a;
    padding: 8px 24px;
    border-radius: 50px;
    color: white;
    transition: all 300ms ease;
}

.nav__link--anchor-primary:hover {
    background-color: #1c0221;
    color: white;
}

.personal__logo {
    font-size: 24px;
    color: #22577a;
    margin: 0 12px;
    font-weight: bold;
}

/* 

About Me

*/

#about-me {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.about-me__info {
    display: flex;
    flex-direction: column;
}

.about-me__info--container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.about-me__info--title {
    margin-bottom: 16px;
}
.about-me__info--para {
    font-size: 20px;
    margin-bottom: 28px;
}

.about-me__link {
    color: #22577a;
    font-size: 24px;
    text-decoration: none;
    padding: 0  16px;
}

.about-me__img--container {
    flex: 1;
    display: flex;
    align-items: center;
}

.about-me__img {
    width: 100%;
}


