*,::before,::after {
  box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  /* p,h1,h2,h3,h4,a {
    font-family: "Share Tech", sans-serif;
    font-weight: 400;
    font-style: normal;
  } */
  p,li, a{
    font-size:1.125em;
  }
  
  header {
    background-color: #333333;
    position:fixed;
    width: 100%;
    z-index:2;
  }
  
  nav {
    margin: 0;
    padding: 20px 0;
    position:fixed;
  }

  #logo{
    margin-top:10px;
    height:75px; 
    background-color: antiquewhite;
    border-radius: 50%;

}
  
nav li {
  color: #fff;
  font-family: "Share Tech", sans-serif;
  font-weight: 600;
  font-size: 2.125em;
  display: inline-block;
  /* width: 80px; */
}
  
  main {
    text-align: center;
    position: relative;
    top: 80px;
  }
  
  main h1 {
    color: #333;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 4em;
    margin-top: 0px;
    padding-top: 80px;
    margin-bottom: 80px;
    text-transform: uppercase;
  }
  
  footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
  }
  
  footer p {
    /* font-family: 'Raleway', sans-serif; */
    text-transform: uppercase;
    font-size: 11px;
  }
  
  .container {
    /* max-width: 940px; */
    width: 35em;
    margin: 0 auto;
    padding: 0 10px;
    text-align: center;
  }
  
  .jumbotron {
    height: 800px;
    /* background-image: url("https://content.codecademy.com/projects/broadway/bg.jpg"); */
    background-image: url('img/bg-mpls.jpg');
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /* height: 100vh; */
  }
  
  .btn-main {
    background-color: #333;
    color: #fff;
    /* font-family: 'Raleway', sans-serif; */
    font-weight: 600;
    font-size: 1.125em;
    letter-spacing: 1.3px;
    padding: 16px 40px;
    text-decoration: none;
    text-transform: uppercase;
  }
  
  .btn-default {
    /* font-family: 'Raleway', sans-serif; */
    font-weight: 600;
    font-size: 1.125em;
    letter-spacing: 1.3px;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;  
    margin-bottom: 20px;      
  }
  
  .supporting {
    padding-top: 80px;
    padding-bottom: 100px;
    border: 2px solid #333333;
  }
  
  .supporting .col {
    /* font-family: 'Raleway', sans-serif; */
    text-align: center;
    /* display: inline-block; */
    /* width: 200px; */
    margin-block-start: 1rem;

  }
  .supporting .col h2 {

  }
  .supporting .col p {
    font-size: 2.125em;
    line-height: 1.2;
    /* width: clamp(20em, 30em, 20em); */
  }
  
  .supporting img {
    /* height: 32px; */
    height: 32px;
    margin-right: auto;
  }
  
  .supporting h2 {
    font-weight: 600;
    font-size: 2em;
    text-transform: uppercase;
  }
  
  .supporting p {
    font-weight: 400;
    /* font-size: 14px; */
    /* line-height: 20px; */
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .col {
    /* display: grid; */
    border: 1px solid #333333;
    border-radius: 5px;
    box-shadow: 2px 2px 20px 1px rgba(0, 0, 255, 0.2);
  }
  .supporting a {
    background-color: white;
    color: #333333;
    /* font-family: 'Raleway', sans-serif; */
    font-weight: 600;
    font-size: 2.125em;
    letter-spacing: 1.3px;
    text-decoration: none;
    text-transform: uppercase;
    /* padding: 10px; */
    /* margin-bottom: 10px; */
    /* border: 2px solid #333333;  */
  }
  .supporting a:hover {
    filter: drop-shadow(3px 1px 4px #4444dd);

  }
  
  @media screen and(max-width: 35em) {
    main h1 {
      font-size: 50px;
      padding: 0 40px;
    }
    nav li {
      color: #fff;
      font-family: "Share Tech", sans-serif;
      font-weight: 600;
      font-size: 2.125em;
      display: inline-block;
      /* width: 80px; */
    }
  
    .supporting .col {
      width: 100%;
      margin: 1rem;
      display: block;
      
    }
    div {
        display:block;
    }
    .screenshot {
      margin-block: 2rem;
    }
  }

  form {
    max-width: 35em;
    padding: 2em;
    margin: 0 auto;
  }

  /* About me page */

  .grid {
    display: grid;
    grid-template-rows: 1fr 5fr;
    border: 1px solid #333333;
    background-color: #333333;
    color: #fff;
    height: 100vh;

  }
  .about-me-txt {
    display: inline-block;
    margin: 1rem auto;
    max-width: 620px;
    padding-inline:2rem;
    text-align: justify;
    block-size: 100vh;
  }

  .hidden {
    opacity: 0;
  }
  
  .visible {
    opacity: 1;
    transition: opacity 1s ease-out;
  }
