:root {
    --primary-text-theme-color: #4cd86f;
}

@font-face {
    font-family: Montserrat;
    src: url("../fonts/Montserrat/Montserrat-Light.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: MontserratBold;
    src: url("../fonts/Montserrat/Montserrat-Bold.ttf");
}

* {
    box-sizing: border-box;
    margin:0;
    padding:0;
    font-family: Montserrat;
    color: #eee;
}

body {
    background-color: #161E22;
}

#container {
    display:flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

h1 {
    margin-top: 50px;
    color:rgb(105, 113, 133);
}
h4 {
    color: var(--primary-text-theme-color);
}
a, a:visited {
    color:var(--primary-text-theme-color);
    text-decoration: none;
}

a:hover {
    color: greenyellow;
}

table {
    border-collapse: collapse;
    width: 90%;
    margin-top: 50px;
    margin-bottom: 10px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    overflow: hidden;
}

table tr:hover td {
    background-color:rgb(64, 70, 83);
}

table tr td, table tr th {
    padding: 15px 12px;
    border: none;
}

table tr th {
    font-family: Montserrat;
    background-color: rgb(44, 47, 53);
    color: var(--primary-text-theme-color);
    font-size: 1.1rem;
    text-align: left;
}

table tr td { 
    background-color: #272a31;
 }

 .description {
    width: 90%;
    font-size: 1.1rem;
    line-height: 1.6rem;
    border: 1px solid rgb(64, 70, 83);
    padding: 20px 20px 40px 20px;
    margin: 20px 0;
 }
  p {
    /* margin: 20px 0; */
    padding: 30px 0;
  }

  .code-snippet {
    color: rgb(194, 142, 190);
    font-weight: bold;
  }

  .download-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    width: 90%;
    padding: 5px 0px;
  }

  .download-button {
    background-color:#272a31;
    padding: 10px 20px;
    border-radius: 5px;
  }

  .download-button:hover {
    background-color: var(--primary-text-theme-color);
    color: #272a31;
    font-weight: bold;
  }

  ol {
    padding-left: 27px;
    font-size: 0.9rem;
  }

  #grid {
    /* display: none; */
    display: flex;
    margin: 30px 0;
    flex-direction: column;
    gap:30px;
    width: 90%;
    min-height: 100px;
  }

  .grid-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgb(64, 70, 83);
    border-radius: 5px;
    overflow: hidden;

  }
  .gr {
    display: flex;
    flex-direction: row;

  }
  .gc-1 {
    display:inline-block;
    width: 200px;
    height: 100%;
    background-color: #272a31;
  }
  .gc-1, .gc-2 {
    padding: 7px;
  }
  .grid-name {
    color: var(--primary-text-theme-color);
  }

  @media (max-width: 1200px) {

    table {
        display: none;
    }
    #grid {
        display: flex;
        font-size: 0.8rem;
    }
    .gc-1 {
        width: 90px;
    }
    .download-button {
        width: 100%;
        text-align: center;
    }

  }