@import url("https://fonts.googleapis.com/css2?family=Coming+Soon&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap");

body {
  font-family: "Coming Soon", sans-serif;
  padding: 20px;
  background-color: #1c374c;
  background-image: url(./images/background.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  background-position: center top;
  background-attachment: fixed;
  padding: 20px;
  margin: 0;
  box-sizing: border-box;
}

h1 {
  text-align: center;
  color: white;
  margin-top: 0;
}
#hashmap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;

  margin: 20px;
}
.bucket {
  max-width: 100px;

  margin: 5px;
  padding: 10px;
  background-color: #4c5184;
  color: white;
  border-radius: 5px;
  max-height: 40px;
  overflow: visible;
  box-sizing: border-box;
  white-space: nowrap;
  font-family: "Source Code Pro", sans-serif;
}
.input-container {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 15px;
}
input[type="text"] {
  padding: 0.7rem;
  margin-right: 5px;
  border-radius: 10px;
  border: none;
  font-family: "Coming Soon";
}

button {
  padding: 0.7rem;
  margin: 0 5px;
  font-family: inherit;
  font-weight: bold;
  border: none;
  width: 100px;
  border-radius: 10px;
}


footer ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    gap: 30px;
    color: #010317;
    font-weight: bold;
    background-color: #2c1f73;
    padding: 10px;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
}

footer a{
    text-decoration: none;
    color: white;
    font-weight: bold;
}

footer a:hover{
    text-decoration: underline;
}


@media (max-width: 430px) {
  input {
    width: 100%;
  }
}
