body {
  height: 100vh;
  font-family: -apple-system, system-ui, BlinkMacSystemFont;
  margin: 0;
}

@media screen and (min-width: 768px) {
  body,
  .bottom,
  .modal {
    max-width: 375px;
    margin: 0 auto;
    overflow: hidden;
    margin-top: 10px;
    border-radius: 10px;
  }
  main::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 375px;
    height: 100vh;
    border: 10px solid black;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: -1;
    max-height: 844px;
  }
}
main {
  background-image: url("../images/wallpaper.jpeg");
  height: 100vh;
  max-height: 844px;
  position: relative;
  border-radius: 10px;
}

h1 {
  font-size: 34px;
  font-weight: bold;
  margin: 30px 20px;
}

p {
  color: white;
}

.top-bar {
  padding-bottom: 20px;
  margin: 0 5px 0;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}
.top-bar__clock {
  align-self: flex-start;
}
.top-bar__icon-container {
  display: flex;
}
.top-bar__icon img {
  margin-left: 10px;
  width: 20px;
  height: 20px;
}

.middle {
  display: flex;
  justify-content: space-around;
}
.middle > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.middle__icon {
  cursor: pointer;
}

.icon {
  border-radius: 20px;
  height: 80px;
  width: 80px;
}

.bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.bottom__icons {
  display: flex;
  justify-content: space-around;
  background: darkgray;
  background-image: linear-gradient(90deg, rgba(17, 10, 10, 0.5) 50%, transparent 0), linear-gradient(rgba(17, 10, 10, 0.5) 50%, transparent 0);
  background-size: 3px 3px;
  align-items: flex-end;
  padding: 10px 0;
}
.bottom__icons-text {
  background-color: rgb(80, 78, 78);
  height: 15px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.bottom__icons-text P {
  color: white;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  width: 100%;
  background-color: white;
}

.search-bar {
  width: 80%;
  height: 30px;
  background-color: rgb(221, 209, 209);
  color: #949191;
  border-radius: 10px;
  margin: 0 auto;
  margin-bottom: 10px;
  padding: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.search-bar img {
  width: 20px;
  height: 20px;
}

.back-button {
  color: #095fea;
  font-size: 1.2rem;
  padding: 3px;
  cursor: pointer;
}

.text__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #acb4b7;
  width: 90%;
  margin: 0 auto;
  padding: 5px;
}
.text__icon {
  padding: 10px;
}
.text__icon img {
  border-radius: 50%;
  height: 60px;
  width: 60px;
}
.text--text {
  flex-grow: 1;
}
.text__preview {
  font-size: 0.8rem;
}
.text__preview p {
  color: #acb4b7;
  margin-top: 0;
  margin-bottom: 0;
}
.text__name-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 30px;
}
.text__name-row div:nth-child(2) {
  color: #acb4b7;
  font-size: 0.8rem;
}

.photo__album {
  margin-left: 20px;
}
.photo__album:nth-child(even) {
  margin-left: 0;
}
.photo__grid-container {
  display: grid;
  grid-template-columns: auto auto;
  row-gap: 20px;
  margin: 0 auto;
}
.photo__heading-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 20px 0 20px;
}
.photo__icon {
  width: 160px;
  height: 160px;
  border-radius: 10px;
}
.photo__count {
  color: #acb4b7;
}

.see-all {
  color: #095fea;
}

.divider-bar {
  border-bottom: 1px solid #acb4b7;
  margin-bottom: 30px;
  margin-left: 20px;
}

.notes__main-container {
  margin: 0 20px 0 20px;
}
.notes__group-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #acb4b7;
  padding-top: 10px;
  padding-bottom: 10px;
}
.notes__preview {
  padding-top: 5px;
  color: #acb4b7;
}
.notes__heading h4 {
  margin: 0;
}
.notes__icon img {
  width: 30px;
  height: 30px;
  border: 1px solid lightgray;
  border-radius: 3px;
}

.setting__option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  background-color: white;
  border-bottom: 1px solid #acb4b7;
  width: 80%;
  margin: 0 auto;
}
.setting__icon img {
  width: 30px;
  height: 30px;
}
.setting__title {
  flex-grow: 1;
  padding: 0 10px;
}
.setting__arrow {
  color: #acb4b7;
}

/*# sourceMappingURL=style.css.map */
