body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.app {
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-areas:
        "header"
        "body"
        "footer";
    grid-template-rows: auto 1fr;
}

.navbar {
    grid-area: header;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 12px;
    height: 72px;
    background: aquamarine;
    color: black;
}

h1 {
    font-size: 22px;
}

.container {
    grid-area: body;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 24px;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: white;
    gap: 48px;
}

.text-container {
    grid-area: body;
    padding: 24px;}

.stick-note {
    box-sizing: border-box;
    width: 550px;
    height: 400px;
    padding: 120px 5px 0 5px;
    background-image: url("/public/images/sticky-note.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.picture {
    transition: transform .7s ease-in-out;
}

.picture:hover {
    transform: rotate(360deg);
}