@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");

body {
  background: white;
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: 150px 150px;
  background-image:
    linear-gradient(to right, rgb(0, 0, 0) 2px, transparent 2px),
    linear-gradient(to bottom, rgb(0, 0, 0) 2px, transparent 2px);
  background-position: center;
  margin: 0;
}

.block {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: auto; 
  max-width: 400px;
  justify-content: center;
  font-family: 'Onest';
  overflow: hidden;
  padding: 20px
}

.block a {
  display: block;
  width: 100%;
}

.block button {
  width: 100%;
  margin: 10px 0;
}

h1 {
  margin: 10px auto;
  text-align: center;
  font-weight: 900;
  font-size: 50px;
  line-height: 50px;
  background-color: white;
  border: 3px solid black;
  box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
  padding: 10px;
}

h1 span {
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
}

#shop {
  background-color: rgb(0, 170, 0);
}

#newsletter {
  background-color: rgb(0, 126, 236);
}

#instagram {
  background-color: rgb(255, 230, 0);
}

#youtube {
  background-color: red;
}