body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column; 
    min-height: 95vh;
    background-color: #171a21;
  }
  
  #searchSection, #modSection, #workshopSection {
    padding: 20px;
    box-sizing: border-box;
  }
  
  #searchSection {
    background-color: #171a21;
    text-align: center;
  }
  
  #searchForm {
    width: 75%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #errorSection {
    outline: solid #9e1c31;
    width: 75%;
    margin: 0 auto;
    padding: 0px 0px;
    background-color: #1b2838;;
    border-radius: 1rem;
    display: none;
  }

  #errorHead {
    padding-left: 10px;
    padding-top: 10px;
    font-size: larger;
    padding-right: 5px;
  }

  #errorList {
    color: hsl(205, 16%, 77%);
    padding-left: 25px;
  }
  
  #urlInput {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 4px 0 0 4px;
    background-color: #f0f0f0;
  }
  
  #submit {
    width: fit-content;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    background-color: #5c6bc0;
    color: #fff;
    cursor: pointer;
    margin-left: 10px;
  }

  #sectionContainer {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  #affiliateSection {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  
  #modWorkshopContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }
  
  #modSection, #workshopSection {
    flex: 1;
    margin: 20px;
    width: 40%;
    background-color: #1b2838;
    color: #fff;
    position: relative;
    height: calc(70vh - 80px);
    overflow-y: hidden;
  }
  
  #modSection p, #workshopSection p {
    flex: 1;
    word-wrap: break-word;
    max-width: 55em;
    width: 90%;
    margin: auto;
    filter: blur(1px); 
    position: relative; 
    cursor: pointer;
    height: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  #contactMe {
    padding: 10px;
    width: 100%;
    margin-top: auto;
    text-align: center; 
    position: fixed;
    bottom: 0;
    background-color: #171a21;
  }
  
  #contactMe a {
    color: #a7a5a5;
  }