
body { 
  font-family: 'Gill Sans', Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #cfcfcf;
  line-height: 1.6;
  background-color: #000a1c;
  padding-top: 0px;
  margin: 0px
}


/* Headings */
.header {
  text-align: center;
  background: #1b2958;
  color: rgb(255, 255, 255);
  font-size: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  width: 100%;
  box-shadow: 0px 4px 8px rgba(87, 87, 87, 0.2);
}

.header-element {
  font-size: 20px;
  text-align: center;
  color: rgb(52, 131, 250);
  padding: 10px;
  border-radius: 5px
}

.header-right {
  display: flex;
  gap: 30px;
  float:right;
  text-align: center;
  padding-right: 3%;
}

.header-left {
  float: left;
  font-size: 40px;
  padding-left: 3%;
}

h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  margin-top: 24px;
  margin-bottom: 16px;
  font-weight: 600;
}

/* We want the headings to be a little bigger than the paragraph text */
.big { /* This is the class we created in the HTML file, you can use it to style any element */
  font-size: 2.5em;
}

h2 {
  font-size: 1.75em;
}

.small {
  font-size: 1.25em;
}

/* Paragraph */
p {
  margin-bottom: 1em;
  font-weight: 300;
  margin-right: 3%;
  margin-left: 3%;
  text-align: justify;
  text-align-last: center;
  text-justify: inter-word;
}

.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  align-items: center;
  text-align: center;

}
/* Links */
/* We want the links to be a little more visible  and a different color */
a {
  color: rgb(52, 131, 250);
  text-decoration: none;
  
}

a:hover {
  background-color: white;
  
}
  
/* Images */
img {
  max-width: 100%;
  height: auto;
}

figure {
  border-radius: 20px;
  padding: 20px;
  background-color: white;
}

.loadingscreen {
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
  background-color: #000a1c;
  display: flex;
  align-items: center;
  justify-content: center;
}