#navigation {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    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;
}

.intro {
    display: flex;
    justify-content:center;
}

.intro-photo {
    width: 25%;
    margin: auto;
    border: solid 5px black;
}
.intro-text {
    flex-wrap: wrap;
    align-self: center;
    margin: auto;
    color: black;
    font-family: 'HFMonorita Bold', sans-serif;
}
h1 {
    text-transform: uppercase;
}

#footer {
    display: flex;
    justify-content: flex-end;
    font-family: 'HFMonorita Bold', sans-serif;
    font-size:8px;
    margin: 0px 15px 10px 0px;
}
@media all and (max-width:820px) {
    .intro {
        flex-wrap: wrap;
        text-align: center;
    }
    .intro-photo {
        width: 40%;
    }
    #footer {
        font-size:6px;
    }
}
@media all and (max-width:800px) {
    .intro-photo {
        width: 30%;
    }
}

@media all and (max-width:500px) {
    #navigation {
        padding: 10px;
    }
    .nav-current {
        font-size: 20px;
    }
    .nav-other {
        font-size: 10px;
    }
    .intro-text {
        font-size: 12px;
    }
    .intro-photo {
        width: 40%;
    }
}
@media all and (max-width:380px) {
    .nav-current {
        font-size: 15px;
    }
    .nav-other {
        font-size: 8px;
    }
}