.location {
 display: flex;
 margin-top: 1rem;
 margin-left: 2rem;
}

#note-title {
 font-size: 3rem;
 text-decoration: underline;
 margin-bottom: 2rem;
 font-family: Poppins, sans-serif;
 margin-top: 0;
}

.container * {
 margin-bottom: 1.8rem;
}


.container h1,
.container h2,
.container h3,
.container h4,
.container h5,
.container h6 {
 margin-top: 5rem;
 margin-bottom: 1rem;
}

.container h3,
.container h4,
.container h5,
.container h6 {
 text-transform: uppercase;
}

.container h3::after,
.container h4::after,
.container h5::after,
.container h6::after {
 content: "";
 display: block;
 height: 1px;
 width: 60%;
 background: black;
}

.container {
 max-width: 1440px;
}

p {
 line-height: 1.8rem;
}

ul {
 padding-left: 2rem;
}


.container img {
 display: block;
 margin: auto;
 max-width: 100%;
}


.navigation {
 display: flex;
 justify-content: space-between;
 margin: 1rem auto;
 width: 80%;
}

.navigation a {
 background: #89eb89;
 color: #fff;
}

.modal {
 position: fixed;
 bottom: 0;
 background: #fff;
 min-height: 10%;
 width: 100%;
 padding: 15px 15px 20px 15px;
 margin-bottom: 0;
 display: flex;
 flex-direction: column;
 align-items: center;
 border-top-left-radius: 15px;
 border-top-right-radius: 15px;
 max-height: 50%;
 box-shadow: 0 0.5rem 1.4rem #a9c7a9;
 background: #f2f5f2;
}

.modal #cancelBtn {
 align-self: flex-end;
 color: #ac0303;
 background: none;
 border: none;
}

.modal label {
 font-weight: bold;
}

.modal.hide {
 display: none;
}

.modal * {
 margin-bottom: 1rem;
}

.modal label {
 align-self: flex-start;
}


.modal input,
.modal textarea {
 width: 100%;
 border-radius: 5px;
 border: 1px solid #89eb89;
 padding: 1rem;
}

textarea {
 resize: none;
 height: 40%;
}


.modal .buttons {
 display: flex;
 justify-content: space-between;
 width: 100%;
}

.modal #modalSave {
 background: #89eb89;
 color: #fff;
}

.container .btn {
 border-radius: 50%;
 width: 4rem;
 height: 4rem;
 position: fixed;
 bottom: 2rem;
 right: 1rem;
}

@media screen and (min-width: 769px) {
 .container .btn {
  display: none;
 }
}

#attribution {
 text-align: center;
 display: block;
 bottom: 0;
 color: red;
}

.navigation a {
 text-decoration: none;
}