html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'handlee', cursive;
}

.save-note,
.new-note,
.clear-btn {
  display: none;
}

.icons {
  margin-left: 15px;
  margin-right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

.note-textarea,
.note-title {
  color: #000000;
  width: 100%;
  outline: none;
  border: none;
}

.note-textarea {
  resize: none;
  height: calc(100% - 63px);
  padding-top: 15px;
}

.note-title {
  height: 50px;
  margin-top: 13px;
  font-size: 3rem;
}

.note-title:read-only,
.note-textarea:read-only {
  color: #757575;
}

.list-container .card {
  height: calc(100vh - 70px);
  border-bottom: none;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.list-container {
  padding-left: 0;
}

.list-container .list-group,
.list-container .list-group-item:first-child,
.list-container .card {
  border-top: none;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.list-item-title {
  display: inline-block;
  width: 75%;
}

.list-container i {
  font-size: 1.1rem;
  cursor: pointer;
}

.list-container .list-group-item {
  border-left: none;
  border-right: none;
  padding: 20px;
  cursor: pointer;
}

.navbar {
  background: linear-gradient(
    to top,
    dodgerblue,
    rgba(100, 156, 215, 0.89)
  ) !important;
  font-family: 'Gochi Hand', cursive;
  font-weight: 400;
  font-style: normal;

  width: 100%;
}

.card {
  background-image: url(../images/cork.jpg);
  background-position: center;
  background-size: cover;
}

.list-group-item {
  background-color: rgba(246, 247, 183, 0.923);
  color: dodgerblue;
  border-radius: 8px;
  margin: 5px;
  font-size: larger;
  font-family: 'Gochi Hand', cursive;
  font-weight: 400;
  font-style: normal;
}

.note-textarea,
.note-title {
  background-color: rgba(246, 247, 183, 0.99);
  padding: 10px;
  font-family: 'handlee';
}

.note-title {
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  border-bottom: 1px solid rgba(155, 155, 155, 0.466);
  padding: 30px;
}

.note-textarea {
  height: 200px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding-left: 30px;
  font-size: larger;
}

.col-8 {
  border-radius: top right 25px;
}

.page {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
}

.container {
  background: url(../images/noteTakerProject.jpg);
  border-radius: 25px;
  background-size: cover;
  background-position: center center;
  width: 500px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.backer {
  background-color: white;
  background-position: center center;
  background-size: cover;
}

.navbar-brand {
  font-size: xx-large;
  font-family: 'Gochi Hand', cursive;
  font-weight: 400;
  font-style: normal;
}

.navbar-brand:hover {
  scale: 1.1;
}

h1 {
  padding: 10px;
  border-bottom: 1px solid rgba(155, 155, 155, 0.466);
}

.list-group-item:hover {
  scale: 1.03;
}

.continue {
  position: fixed;
  bottom: 0;
}

@media screen and (max-width: 600px) {
  .container-fluid {
    background-image: url(../images/cork.jpg);
    background-size: cover;
  }

  .row {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-content: center;
  }

  .col-8 {
    margin: auto;
  }
  .note-title {
    font-size: larger;
    padding: 20px;
  }

  .card {
    width: 100vw;
    background: none;
    height: fit-content;
    display: flex;
    flex-direction: row;
  }

  .list-container {
    width: 100%;
    margin-right: 0;
  }

  .list-group-item {
    padding: 0px;
    text-align: center;
    width: 97%;
  }

  li {
    padding: 0px;
  }

  .note-textarea {
    font-size: medium;
  }

  .container {
    width: 80vw;
  }

  .list-item-title {
    font-size: 15px;
  }

  .list-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
}
