@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200&family=Montserrat:wght@300&family=PT+Sans:ital@1&family=Poppins:wght@300&family=Source+Sans+Pro:wght@300&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #000;
}
header {
  width: 80%;
  margin: auto;
}
nav {
  /* text-align: center; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #000;
  padding: 10px 15px;
  color: white;
}

.link {
  font-size: 16px;
  text-decoration: none;
  color: white;
}
.profile {
  border: transparent 1px solid;
  border-radius: 100px;
  height: 100px
}

.content {
  display: flex;
  width: 80%;
  margin: auto;
  background-color: black;
  justify-content: space-between;
}
.list-itm {
  /* visibility: hidden; */
  padding: 0 2%;
}
.inline-block {
  display: block;
}
.right {
  align-items: flex-end;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  background-color: black;
  width: 30vw;
}
.right-one {
  background-color: #1db9c3;
  border-radius: 5px;
  max-width: 557px;

  padding: 10px 12px;
  margin-bottom: 5px;
}

.left {
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  background-color: black;
  width: 30vw;
}

.left-one {
  border-radius: 5px;
  padding: 5px 12px;
  max-width: 557px;
  background-color: #fdb9fc;
  margin-bottom: 10px;
}


.left-two {
  border-radius: 5px;
  padding: 5px 12px;
  max-width: 557px;
  background-color: #e8f9fd;
  margin-bottom: 10px;
}

.left-three {
  border-radius: 5px;
  /* padding: 5px 12px; */
  background-color: #c2ffd9;
  max-width: 581px;
  text-align: center;
}
.left-three span {
  font-size: 24px;
}
.left-three table tr td {
  border: 1px inset grey;
}
.left-three table tr th {
  border: 1px inset grey;
  padding: 5px;
}

table {
  margin: auto;
  width: 100%;
  border: 2px solid lightslategray;
  /* width: 50px; */
}


.link:hover {
  color: firebrick;
}
li {
  text-decoration: none;
}
span {
  font-size: 20px;
}
footer{
    /* border-top: 1px solid white ; */
    padding: 10px;
    margin: 20px 0;
    color: white;
    text-align: center;
}
.gh-link {
    /* display: block; */
    font-size: large;
    color: white;
    margin: 10px;
    padding: 5px;
    text-decoration: none;
  }
@media screen and (max-width: 1024px) {
  header {
    margin-top: 5px;
    width: 100%;
  }
  /* header nav h1 {
    font-size: 15px;
  } */
  .content {
    width: 100%;
    font-size: small;
    flex-direction: column;
    row-gap: 10px;
  }
  .right {
    padding: 5px;
    width: auto;
    align-items: flex-start;
    flex-direction: column;
  }
  .left-one{
    margin: 0 auto 10px auto;
  }
  .left-two{
    margin: 0 auto 10px auto;
  }
  .left-three{
    margin: 0 auto 0px auto;
  }
  .right-one{
    margin: 0 auto 10px auto;
  }
  .left {
    padding: 5px;
    width: auto;
    flex-direction: column;
    display: block;
  }
  .left-three table tr td {
    padding: 3px;
    border: 1px inset black;
  }
  .left-three table tr th {
    border: 1px inset black;
    padding: 5px;
  }
}
@media screen and (min-width: 1024px) {
  li:hover {
    color: firebrick;
  }
  .left-three tr :hover {
    border: 1px solid white;
  }
  .left-three:hover {
    border: 8px black solid;
    border-radius: 5px;
    background-color: black;
    color: white;

    padding: 40px;
    transition: 500ms;
    transition-delay: 50ms;
    display: flexbox;
    justify-items: center;
  }
  .left-two:hover {
    border: 8px black solid;
    border-radius: 5px;
    background-color: black;
    color: white;

    padding: 30px;
    transition: 500ms;
    transition-delay: 50ms;
    display: flexbox;
    justify-items: center;
  }
  .left-one:hover {
    border: 8px black solid;
    border-radius: 5px;
    background-color: black;
    color: white;
    padding: 25px;
    transition: 500ms;
    transition-delay: 50ms;
    display: flexbox;
    justify-items: center;
  }
  .right-one:hover {
    border: 8px black solid;
    border-radius: 5px;
    background-color: black;
    color: white;

    padding: 25px 35px;
    transition: 500ms;
    transition-delay: 50ms;
    display: flexbox;
    justify-items: center;
  }
  nav:hover {
    /* color: firebrick;  */
    padding: 70px;
    transition: 1000ms;
    /* background-color: snow; */
    flex-direction: column-reverse;
    row-gap: 10px;
  }
 
  .gh-link:hover{
    color: firebrick;
  }
}
