* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  color: rgb(0, 0, 0);
  font-size: 20px;
  font-weight: lighter;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

p span.welcome-span {
  color: red;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-style: italic;
}

div h1 p span#hello-span {
  color: blue;
}

section.main {
    width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container {
  width: 200px;
  height: 100px;
  /* background-color: #3e4d98; */
  border: 2px #f60000 solid;
  margin: 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.container-2 {
  width: 200px;
  height: 100px;
  border: 3px black solid;
  box-shadow: -5px 5px 1px black;
  margin: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.container-2 div.items{
  width: 20%;
  height: 10px;
}

.items-1 {
  background-color: #f60000;
}

.items-2 {
  background-color: #f2f600;
}

.items-3 {
    background-color: blue;
}