@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");

html {
  scroll-behavior: smooth;
}

body {
  font-family: Roboto, sans-serif;
  margin: 0;
  padding: 0;
}

.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: whitesmoke;
}

.loading-text {
  font-size: 24px;
  font-weight: 500;
  color: #000000;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.loading-text img {
  width: 50%;
  height: 50%;
  max-width: 80px;
  max-height: 80px;
  border-radius: 20%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(0, 0, 0, 0.2), 0 0 40px rgba(0, 0, 0, 0.2);
}
