@import url("https://fonts.googleapis.com/css?family=Raleway");
@import url("https://fonts.googleapis.com/css?family=Open+Sans");

body {
  display: flex;
  flex-direction: column; /* To stack children vertically */
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  background-color: #101829;
  color: #FAF3E0; /* Make text color consistent with other elements */
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center; /* Align the child elements to the center */
}

.animated-block {
  margin-bottom: 50px;
}

.animated-block #nut,
.animated-block #wrench {
  display: block;
  margin: 0 auto; /* Center the SVGs */
}

.main-header {
  max-width: 300px;
  margin-bottom: 60px; /* Space between the header and the logo */
  font: 30px "Raleway", sans-serif;
  text-align: center;
  text-transform: uppercase;
}

.main-link {
  font: 24px "Open Sans", sans-serif;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the children horizontally */
}

.logo-container img {
  width: 50%; /* The image will take half of the viewport’s width */
  max-height: 100%; /* To ensure that the image does not exceed the viewport’s height */
}
