@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;1,300;1,400&display=swap");

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

body {
  background: #f5f5f5;
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
  color: #000;
  transition: all 300ms ease-in;
}

a:hover{
  letter-spacing: 2px;
  color: #272727;
}

/* Style for loading screen */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Opening SVG */
.opening {
  color: #fccb06;

}

main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.container {
  background: #fff;
  padding: 2rem;
  border-radius: 5px;
  text-align: center;
  box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.03);
  -webkit-box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.03);
  border-bottom: 3px solid #fccb06;;
  transition: all 300ms ease-in;
}

.container:hover{
  border-bottom: 3px solid #f56403;;
}


