body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background: #208AAE;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
  
.container {
    text-align: center;
    max-width: 500px;
    padding: 20px;
}
  
h1 {
    color: #000000;
}
  
.note-card {
    background: #FFFFFF;
    border: 3px dashed #0D2149;
    padding: 30px;
    margin: 20px 0;
    border-radius: 15px;
    font-size: 1.2rem;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.note-card p {
    color: #000000;
}
  
button {
    background-color: #60492C;
    color: #FFFFFF;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
  
button:hover {
    background-color: #05183D;
}  