@import url("../style.css");

body {
  background-color: #164E42;
}

header {
  text-align: center;
  padding: 20px 0;
  background-color: #164E42;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 80px;
}


#logo-image {
  width: 150px;
  padding-left: 4rem;
  display: flex; 
}


.notes{
width: 100%;
min-height: 100vh;
padding-top: 4%;
padding-left: 10%;  
}

.notes h1{
display: flex;
align-items: center;
font-weight: 600;
}

.notes button img{
width: 25px;
margin-right: 8px;
}

.notes button {
  display: flex;
  align-items: center;
  background: #A2AC82;
  font-size: 20px;
  outline: 0;
  border: 0;
  border-radius: 0.3rem;
  padding: 15px 25px;
  margin: 30px 0 20px;
  cursor: pointer;
}

.input-box{
position: relative;
width: 100%;
max-width: 500px;
min-height: 150px;
background: #fdfff0;
color: #2E2D1D;
padding: 20px;
margin: 20px 0;
outline: none;
border-radius: 5px;
box-shadow: 0 1rem 1rem rgba(0, 23, 71, 0.15);
  
}

.input-box img{
  width: 25px;
  position: absolute;
  bottom: 15px;
  right: 15px;
  cursor: pointer;
}

.current {
  font-weight: bold;
}