body {
    background-color: #F3E4F4;
    font-family: "Lucida Console", "Courier New", monospace;
    height: 100vh;
}

.sheet-container {
    height: 60vh;
    max-width: 1000px;
    margin: 0 auto; 
    padding: 20px;
    background-color: white;
    border-radius: 20px 20px 150px 20px;
    display: table;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 90px;

}
.date-container {
    display: flex;
    justify-content: flex-start;
    color: black;
    font-size: bold;
    font-weight: 600;
    margin-left: 30px;
    margin-top: 20px;
}

.date-container div {
    display: flex;
    flex-direction: column;
    
    padding-right: 20px;

}	

.date-container input {
    margin-top: 8px;
    margin-bottom: 25px;
    border-radius:4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 100px;
    height: 40px;
}	

.years-info {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
}

.years-info p {
    font-size: 50px;
    font-display: bold;
    font-family: arial black;
    margin: 0;
}
.attribution { 
    font-size: 11px; 
    text-align: center; 
}
.attribution a { 
    color: hsl(228, 45%, 44%);
}



span{
    color: blueviolet;
}

.end { 
    font-size: 11px; 
    text-align: center; 
    margin-top: 20px;
}

.arrow-container {
    display: flex;
    justify-content: space-between;

    margin-right:30px;
}

.arrow-container hr {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 0;
    margin-top: 20px;
}
.material-symbols-outlined{
    display: flex;
    flex-direction: column;
    color: #F3E4F4;
}

.material-symbols-outlined:hover {
    color: blueviolet;
    cursor: pointer;
}

button { 
    border-radius: 50%;
    width: 70px;
    height: 50px;
    margin-left: 15px;
    border-color: transparent;
    background-color: blueviolet;
}

button:hover {
    background-color: #F3E4F4;
    cursor: pointer;
}

/* Media query for mobile screens */
@media (max-width: 375px) {
    .sheet-container {
      padding: 10px;
    }
  
    .date-container {
      flex-direction: column;
      align-items: center;
    }
  }