@font-face {
    font-family: 'overlock';
    src: url(overlock.ttf) format('truetype');
}
@font-face {
    font-family: 'berliner';
    src: url(berliner.ttf) format('truetype');
}

* {
    margin: 0;
    padding: 0;
}

 body {
    background-image: linear-gradient(to bottom, #0b669a 0%, #161d52 100%);
    font-family: 'overlock', sans-serif;
 }

h1 {
    font-family: 'berliner', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 6px;
}

a {
    color: #62bff9;
    text-decoration: none;
}


/* body {
    background-image: linear-gradient(to bottom, #f8c200 0%, #f9d423 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.puzzle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: #ffff;
    padding: 30px;
    border-radius: 15px;
    width: 700px;
} */

/* .container > h1 {
    font-size: 50px;
    color: #292929;
} */

/* button {
    font-size: 24px;
    padding: 5px 25px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: #e2c045;
    color: #ffff;
    cursor: pointer;
} */

/* button:hover {
    background-color: #f9d423;
} */

.puzzle-container {
    display: flex;
}

.puzzle-container img {
    width: 100px;
}

.puzzle {
    display: grid;
    /* width: 25em; */
    /* height: 25em; */
    grid-template-columns: repeat(3, 1fr);
    /* grid-auto-rows: 8em; */
}