* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    margin: 0;
    background: var(--bg-color);
    color: var(--text-color);
  }

  :root {
    --bg-color: #1f242d;
    --second-bg-color: #323946;
    --text-color: #fff;
    --main-color: #0ef;
}

html { 
    font-size: 62.5%;
    overflow-x: hidden;
}

a {
  display: block;
  margin-bottom:  0.75rem;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
  hover: rgb(20 184 166);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.grapich .heading {
        text-align: center;
        padding-top: 10rem;
        font-size: 4.5rem;
        justify-content: center;
}

.grapich h2 {
    margin-bottom: 2rem;
    text-align:center; 
}

.text {
    color: var(--text-color);
    padding-bottom: 5rem;
    font-size: 1rem;
    text-align: center;
}
  
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    z-index: 100;
}
  
  .row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
    justify-content: center;
  }
  
  /* Create four equal columns that sits next to each other */
  .column {
    -ms-flex: 25%; /* IE10 */
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
    padding-bottom: 10rem;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }
  
  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 800px) {
    .column {
      -ms-flex: 50%;
      flex: 50%;
      max-width: 50%;
    }
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column {
      -ms-flex: 100%;
      flex: 100%;
      max-width: 100%;
    }

    .header .container a.logo {
      font-size: 14px;
      width: 100%;
  }
  }

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 9%;
    background: var(--second-bg-color);
}

.footer-text p {
    font-size: 1.6rem;
    color: white;
}

.footer-icon a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .8rem;
    background: var(--main-color);
    border-radius: .8rem;
    transition: .5s ease;
}

.footer-icon a:hover {
    box-shadow: 0 0 1rem  var(--main-color);
}

.footer-icon a i {
    font-size: 2.4rem;
    color: var(--bg-color);
}

/* BREAK POINTS */
@media (max-width: 1200px) {
  html {
      font-size: 55%;
  }
}

@media  (max-width: 450px) {
  html {
      font-size: 50%;
  }

  .footer-text p {
    font-size: 1.5rem;
    color: white;
}
}

@media  (max-width: 365px) {
  .footer {
      flex-direction: column-reverse;
  }

  .footer p  {
      text-align: center;
      margin-top: 2rem;
  }
}
