/* We are using the 'Roboto' font from Google. This has already been added to your HTML header */
/**
 * Add your custom styles below

 * 
 * Remember: 
 * - Be organised, use comments and separate your styles into meaningful chunks
 *    for example: General styles, Navigation styles, Hero styles, Footer etc.
 * 
 * - When using Flexbox, remember the items you want to move around need to be inside a parent container set to 'display: flex'
 */

body {
    font-family: "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    background-image: url(images/background-image.jpg);
    background-repeat: no-repeat;
    background-size: cover;

}
/* Header styles */
header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 50px;
    width: 100vw;
}

/* Nav and Links */

.navbar  {
    display: flex;
    margin-left: 20px;
    gap: 25px; 
   /* background-color:rgb(12, 12, 12);*/
    width: 100%;
    overflow: auto;
    color: #3c741b;
    justify-content: center;
    

}

.navbar a:hover {
    color: #3c741b;
}


.navbar a {
    text-decoration: none;
    color: black;
    width: 10%;
    text-align: center;
    border-style: solid;
    border-width: 1px;
    background-color: darkgrey;
    border-radius: 10px;
    padding: 15px;
}
h1 {
    /* font-weight: lighter; */
    font-size: 5rem;
    margin: 1em;
    padding: 0;
    color: black;
    text-align:center;
}
h2 {
    color:black;
    font-size: 2rem;
    text-align: center;
    margin:1em;
   
}
p{

    text-align: start;
    margin-right: 2rem;
    margin-left: 2rem;
    font-size: 1.2rem;
}

h3 {
    color:black;
    text-align: center;
    font-size:1.5rem;
}
p {
    color:black;
}
.statistic-section {
    border: 3px solid black;
    box-shadow: 10px 10px 10px  5px black;
    background-color:rgb(134, 125, 125);
    background: linear-gradient(gray, rgb(228, 233, 228));
    opacity:0.8;
    border-radius: 2em;
    justify-content: center;
    float: left;
    padding:15px;
    width:35%;
    margin: 5em;
    height:40em;

}

.statistic-section-index2 {
    border: 3px solid black;
    box-shadow: 10px 10px 10px 5px black;
    background-color: rgb(134, 125, 125);
    background: linear-gradient(gray, rgb(228, 233, 228));
    opacity: 0.8;
    border-radius: 2em;
    justify-content: center;
    float: left;
    padding: 15px;
    width: 35%;
    margin: 5em;
    height: 40em;

}

.statistic-section-info1 {
     border: 3px solid black;
     box-shadow: 10px 10px 10px 5px black;
     background-color: rgb(134, 125, 125);
     background: linear-gradient(gray, rgb(228, 233, 228));
     opacity: 0.8;
     border-radius: 2em;
     justify-content: center;
     float: left;
     padding: 15px;
    width: 35%;
        margin: 5em;
        height: 60em;

 }

 .statistic-section-info2 {
     border: 3px solid black;
     box-shadow: 10px 10px 10px 5px black;
     background-color: rgb(134, 125, 125);
     background: linear-gradient(gray, rgb(228, 233, 228));
     opacity: 0.8;
     border-radius: 2em;
     justify-content: center;
     float: right;
     padding: 15px;
    width: 35%;
        margin: 5em;
        height: 60em;

 }

  .statistic-section-subtitle1 {
      border: 3px solid black;
      background-color: rgb(134, 125, 125);
      background: linear-gradient(gray, rgb(228, 233, 228));
      opacity: 0.8;
      border-radius: 2em;
      margin: 1em;
      margin-left: 35rem;
      margin-right: 35rem;

  }

  .statistic-section-subtitle2 {
      border: 3px solid black;
      background-color: rgb(134, 125, 125);
      background: linear-gradient(gray, rgb(228, 233, 228));
      opacity: 0.8;
      border-radius: 2em;
      margin: 1em;
      margin-left: 35rem;
      margin-right: 35rem;

  }


.icons {
    display: flex;
}
/* Footer */

footer {
    width: 100%;
    border: 2px solid rgb(238, 234, 234);
    border-right: 0;
    border-left: 0;
    border-bottom: 0;
    margin-top: 7%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_imgs_wrapper {
    display: flex;
    justify-content: space-between;
    width: 10%;
}

.footer_imgs_wrapper div {
    width: 30px;
    height: 30px;
    border: 2px solid rgb(238, 234, 234);
    border-radius: 50%;
}


#footer_text1 {
    font-size: 0.7rem;
    font-weight: bold;
    color: rgb(110, 107, 107);
    letter-spacing: 0.06rem;
}

#footer_text2 {
    color: rgb(201, 189, 189);
    font-size: small;
}
