body {
    display: flex;
    flex-direction: column;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: #e0e0e0;
}

nav {
    width: 100%; 
    height: 50px; 
    display: flex;
    justify-content: space-between;
}

.logo {
    height: 30px;
    margin: 15px 30px;
}

section {
    width: 100%; 
    background-color:#fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 0 0 0;
}

.hero {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-info {
margin: 30px;
justify-content: center;
max-width: 500px;
}

.intro-one {
    font-size: 25px;
}

.hero-image {
    height: 300px;
    width: 300px;
    margin: 30px;
}

.styled-break {
    width: 130px;
    height: 5px;
    background-color: #6487d3;
    border-radius: 2,5px;
    margin: 30px 0 30px 0;  
}

.avatar {
    width:100px;
    border-radius: 50px;
}

.about-me {
    width: 300px;
    margin: 5px;
    display: flex;
    justify-content: space-evenly;
}

.info {
   max-width: 300px;
   margin: 30 px; 
}

#name {
    font-size: 45 px;
}

.test {
    width: 30px;
    height: 30px;
    background-color: #6487d3;
    margin: 5px;
}

#main {
    box-shadow: 2px 2px 5px gray;
}

#test-two {
    width: 20px;
    height: 20px;
}

.button {
    border: 0;
    padding: 10px 20px;
    font-size: 12px;
    background-color: #6487d3;
    width: 80px;
    border-radius: 20px;
    color:aliceblue;
    text-align: center;
    text-transform: uppercase;
    color:rgb(255,255,255);
    text-shadow: 1px 1px 1px #000;
}

.button:hover {
    background-color: #2462e6;
}

.button:active {
    box-shadow: inset -2px -2px 3px rgba(255, 255, 255, 0.6);
}

form {
    margin: 0 0 40px 0;
}

.input-section {
    margin: 10px 0;
    display: flex;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin: 0 5px 0 0;
}

footer {
    font-family: 'Times New Roman', Times, serif;
    display: flex;
    text-decoration: none;
    justify-content: center;
    margin: 40px 0 30px -60px;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    color:rgb(8, 180, 192)
}
a:active {
    color:rgb(15, 255, 7)
}

a.love:hover {
    color:rgb(255, 0, 0)
}
a.love:active {
    color:rgb(194, 29, 29)
}

.hamburger {
    border: 0;
    background-color: transparent;
    margin-top: 15px
}

.hamburger:focus {
    outline: none;
}

.nav-bar {
    display: none;
}

.nav-bar.show {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    text-transform: uppercase;
    font-size: 12px;
}

.nav-bar li {
    background-color: white;
    padding: 3px 30px;
    border-radius: 4px;
    margin: 3px;
}


@media only screen and (max-width: 650px) {
    .intro-three {
       max-width: 400px;
    }

    .hero-image {
        display: none;
        height: 0;
    }
}

@media only screen and (min-width: 650px) {
    .hamburger {
        display: none;
    }

    .nav-bar {
        display: flex;
        justify-content: flex-end;
        list-style-type: none;
        text-transform: uppercase;
        font-size: 12px;
     }

     .nav-bar li {
         margin: 0;
         padding: 10px;
         background-color: transparent;
     }
}