
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,600&display=swap');


*{
    font-family: 'Poppins', sans-serif;
    transition: .2s linear;
}

#container {
    max-width: 960px;
    margin: auto;
}

p, .numbered-list, .inline-link{
    font-size: 17px;
    margin-bottom: 2em;

}

h1{
    font-size: 45px;
}

h2{
    font-size: 30px;
}

#description{
    font-size: 30px;
    font-weight: 400;
}

img{
    height: 100%;
    width: 100%;
    border-style: solid;
    border-width: 5px;
    border-color: black;
}

.caption {
    font-style: italic;
    font-weight: lighter;
    text-align: center;
}

.drop-text{
    margin-top: 2em;
}

.no-newline{
    display: inline;
}

.code-sample {
    position: relative;
    border-radius: 5px;
    padding: 10px;
  }
  
  pre {
    overflow: auto;
  }


  /* something extra for the input explanations*/
  .explanation{
    font-style: italic;
    font-weight: lighter;
    font-size: 12px;
    margin-top: 0;
    margin-bottom: 0;
  }


/*ChatGPT recomended styling*/
    .container {
      max-width: 500px;
      margin: auto;
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    h2 {
      text-align: center;
    }
    label {
      display: block;
      margin-top: 10px;
    }
    input {
      width: 100%;
      padding: 8px;
      margin-top: 4px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }
    button {
      margin-top: 15px;
      padding: 10px;
      width: 100%;
      border: none;
      border-radius: 6px;
      background: #4caf50;
      color: white;
      font-size: 16px;
      cursor: pointer;
    }
    button:hover { background: #45a049; }
    .result {
      margin-top: 15px;
      padding: 10px;
      background: #eef;
      border-radius: 6px;
    }