@font-face {
  font-family: "bread";
  src: url("../fonts/yummy_bread.ttf") format("truetype");
}

html {
  background-color: #e00020;
  color: #f3ede2;
}

body {
  margin: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "bread", sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px;
  text-align: center;
}

#cross-icon {
  max-width: 10vw;
}

h1 {
  font-family: "bread", sans-serif;
  font-size: 60px;
}

main {
  margin: auto;
  min-width: 100vw;
}

footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 10px;
  /* margin-top: auto; */
}

.social-icon {
  width: 5vw;
}

@media (max-width: 900px) {
  h1 {
    font-size: 30px;
  }
  body {
    min-height: auto;
    max-height: 90vh;
  }
  .social-icon {
    width: 20vw;
  }
}
