/*@import url("https://fonts.googleapis.com/css2?family=Pacifico");*/

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

.el {
    /* background-color: #455f5c; */
    background-color: darkgreen;
    color: white;
    display: grid;
    place-content: center;
}

.header {
    font-family: Pacifico, cursive, Courier, monospace;
    font-size: 3rem;
    color: white;
}

body {
    min-height: 80vh;
    color: white;
    background-image: url("../img/post-it-notes.jpg");
    background-position: top;
    background-repeat: repeat-y;
    background-size: cover;
}

.container {
    margin: 2rem;
    min-height: 200px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 0.75rem 0.75rem;
}

.box {
    background-color: bisque;
    color: #666;
    font-size: 0.7rem;
    padding: 0.7rem;
    margin: 0.75rem;
    font-family: system-ui, sans-serif;
    /*font-family: Pacifico, cursive, Courier, monospace;*/
    /* align-content: center; */
    justify-content: center;
    transition: 1s ease;
    min-height: 250px;
}

.box:hover {
    -ms-transform: scale(1.35); /* IE 9 */
    -webkit-transform: scale(1.1, 1.6); /* Safari 3-8 */
    transform: scale(1.15, 1.25);
}

@media (max-width: 24em) {
}

h1 {
    font-size: 4rem;
    color: white;
}
h2 {
    font-size: 2.25rem;
    color: darkblue;
}
