@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

body {
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 400;
}

main {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: rgb(247, 247, 247);
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px;
}


header {
    container-type: inline-size;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header h1 {
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    /* color: olive; */
    margin: 0;
    -webkit-text-stroke: 5px black;
    /* -webkit-text-stroke-color: black; */
    /* -webkit-text-stroke-width: 1px; */
    color: white;

    font-size: clamp(16px, 15cqi, 15cqi);
}

nav li {
    display: inline-block;
}

nav li::before {
    content: "[";
}

nav li::after {
    content: "]";
}


nav a {
    text-decoration: none;
    color: cadetblue;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    list-style-type: none;
    padding: 0;
}

footer {
    display: flex;
    align-items: center;
}

footer .contact-container {
  flex: 1 1 auto;
  min-width: 0;

  display: flex;
  justify-content: center;
  align-items: center;
  gap:10px;
  flex-wrap: wrap;
  flex-direction: row;
}

footer > img {
    flex: 0 0 auto;
    margin-left: auto;
    width: 64px;
}
