html {
    align-items: center;
    color: #313131;
    display: flex;
    font: 22px "Courier New", Courier, monospace;
    height: 100%;
    justify-content: center;
    margin: 0;
  }

body {
    display: flex;
    margin: 1em;
    padding: 1em;
    background-color: #06091d;
    color: white;
  }

h1 {
    font-size: 2em;
    grid-column: 1 / -1;
    margin: 0;
    text-align: center;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus,a:hover {
    color: #11b0ff;
  }

nav {
    display: grid;
    grid-row-gap: 1em;
    grid-template-columns: 1fr 1fr;
    margin: 0 1em;
    min-width: 24em;
    padding: 1em 0;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

li:first-child {
    font-weight: bold;
    line-height: 2em;
    color: white;
    text-shadow: 2px 2px 4px #0000006b;
    background-color: #68cdff;
    box-shadow: 4px 4px rgba(163, 210, 226, 0.986);
    width: 5em;
    margin-bottom: 15px;
    height: 1.8em;
    text-align: center;
    border-radius: 10px;
}

img {
    border: 4px #68cdff;
    border-radius: 25px;
    box-shadow: 8px 8px rgba(163, 210, 226, 0.986);
    height: auto;
    object-fit: cover;
    object-position: 50% 100%;
    width: 16em;
}

