* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Yuji Syuku', serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(128, 128, 128, 0.377);
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
}

header h1 {
    transition: all 0.5s ease;
}

header h1:hover {
    transform: scale(1.1);
}

.notes {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5rem 2rem 7rem;
    flex-wrap: wrap;
}

.notes .before-notes {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin: 1rem;
}

.notes .before-notes .image-container {
    height: 8rem;
    width: 8rem;
    border-radius: 50%;
    background-color: rgb(184, 178, 178);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.notes .before-notes .image-container i {
    font-size: 4rem;
    color: white;
}

.notes .before-notes h3 {
    margin-bottom: 1rem;
}

.new-note {
    min-width: 10rem;
    max-width: 35rem;
    border: 1px solid black;
    margin: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border-radius: 10px;
    height: auto;
    transition: all 0.3s ease;
}
.note-details {
    font-size: 1rem;
    margin: 0.5rem;
    line-height: 1.5rem;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid black;
    min-height: 5rem;
    padding: 0.5rem;
}

.delete-button,
.edit-button {
    margin-bottom: .5rem;
    background-color: transparent;
    border: 1px solid black;
    padding: 0.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 7rem;
}

.delete-button:hover,
.edit-button:hover {
    transform: scale(1.1);
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    background-color: white;
}

.add-notes {
    height: 4rem;
    border: 1px solid rgba(128, 128, 128, 0.377);
    display: flex;
    align-items: center;
    width: 95%;
    margin: auto;
    border-radius: 0.5rem;
    justify-content: space-between;
    padding: 1.2rem 0.6rem 1.2rem 0.8rem;
}

.add-notes input {
    font-size: 1rem;
    outline: none;
    border: none;
    width: 90%;
    padding: 0.2rem;
}

.save-button,.add-button {
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.save-button:hover,.add-button:hover {
    transform: scale(1.5);
    color: rgb(226, 123, 123);
}