#navigation {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    color: black;
    font-family: 'HFMonorita Bold', sans-serif;
}
.nav-current {
    color: black;
    text-decoration: none;
    font-size: 30px;
}
.nav-other {
    color: rgb(165, 155, 155);
    text-decoration: none;
}
#about{
    margin-left:140px;
    margin-right: 100px;
}
.intro {
    display: flex;
    margin-bottom: 20px;
}
.intro-photo-one {
    display: flex;
    align-self: center;
    height: fit-content;
    margin: auto;
}
.intro-photo-two {
    display: flex;
    justify-content: flex-end;
    align-self: center;
    height: fit-content;
}
.intro-photo-one img {
    width: 80%;
    border:solid black 5px;
}
.intro-photo-two img {
    width: 80%;
    border:solid black 5px;
}
.intro-text-one {
    display: flex;
    flex-wrap: wrap;
    color: black;
    font-family: 'HFMonorita Bold', sans-serif;
    font-size: 15px;
    margin-right: 90px;
}
.intro-text-two {
    display: flex;
    flex-wrap: wrap;
    color: black;
    font-family: 'HFMonorita Bold', sans-serif;
    font-size: 15px;
    margin: auto;
}
h1 {
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    font-family: 'HFMonorita Bold', sans-serif;
    font-size: 30px;
}

@media all and (max-width:820px) {
    #about{
        margin:auto;
    }
    .intro {
        flex-wrap: wrap;
    }
    .intro-text-one, .intro-text-two {
        margin-left: 100px;
        margin-right: 120px;
    }
    .intro-text-one {
        margin-top: 20px;
    }
    .intro-text-two {
        margin-bottom: 20px;
    }
    .intro-photo-one {
        justify-content: center;
    }
    .intro-photo-two {
        justify-content: center;
    }
  }

@media all and (max-width:800px) {
    .intro-text-one, .intro-text-two {
        margin-left: 140px;
        margin-right: 100px;
    }
  }
@media all and (max-width:600px) {
    .intro-text-one, .intro-text-two {
        margin-left: 70px;
        margin-right: 40px;
        font-size: 10px;
    }
}
@media all and (max-width:550px) {
    .intro-text-one, .intro-text-two {
        margin-right: 70px;
    }
}
@media all and (max-width:500px) {
    #navigation {
        padding: 10px;
    }
    .nav-current {
        font-size: 20px;
    }
    .nav-other {
        font-size: 10px;
    }
    .intro-text-one, .intro-text-two {
        margin-left: 40px;
        margin-right: 20px;
        font-size: 10px;
    }
    h1 {
        font-size: 20px;
    }
}

@media all and (max-width:380px) {
    .nav-current {
        font-size: 15px;
    }
    .nav-other {
        font-size: 8px;
    }
    .intro-text-one, .intro-text-two {
        font-size: 8px;
    }

    h1 {
        font-size: 15px;
    }
}