.college-home{
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  /* gap:2px; */
}

#college-news{
  background-color: rgb(245, 245, 245);
  width: 80%;
  /* height: 100vh; */
  display:flex;
  flex-direction: column;       /* lay out children vertically */
  /* align-items: center;          center them horizontally */
  justify-content: flex-start;  /* align children to the top */
  padding: 10px;
  box-sizing: border-box;
}

.ranking-table-college{
    display:flex;
    flex-direction: column;
    width:100%;
    border: 2px solid #000;
    border-radius: 5px;
    overflow: hidden;
    font-size: 1.1em;
}

.ranking-header-college, .ranking-row-college{
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid #ccc;
}

.ranking-header-college{
    background-color: #e0e0e0;
    font-weight: bold;
}

.ranking-row-college:last-child {
  border-bottom: none;
}

/* .ranking-row-college span,
.ranking-header-college span {
  flex: 1;
  text-align: center;
  border-right: 1px solid black;
}

.ranking-row-college span:first-child,
.ranking-header-college span:first-child {
  text-align: left;
}

.ranking-row-college span:last-child,
.ranking-header-college span:last-child {
  text-align: right;
  border-right: none;
} */

.ranking-header-college span:nth-child(1),
.ranking-row-college span:nth-child(1) {
  flex: 0.3;        
  text-align: center; 
  border-right: 1px solid black;
}

.ranking-header-college span:nth-child(2),
.ranking-row-college span:nth-child(2) {
  flex: 2;          
  text-align: center;
}

.ranking-header-college span:nth-child(3),
.ranking-row-college span:nth-child(3) {
  flex: 0.3;        
  text-align: center;
  border-right: none;
}

#rankings-note-college{
    text-align: center;
    padding-top: 10px;
}

#rankings-div-titles {
  font-size: 1.8em;
  margin-bottom: 15px;
  color:#000000;
  border-bottom: 2px solid #000000;
  padding-bottom: 5px;
  /* width: 100%; */
  text-align: center;
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-style: normal;
}

@media screen and (max-width: 650px) {

  .ranking-table-college{
    font-size: .70em;
  }

  #rankings-note-college{
    font-size: .80em;
  }

  .ranking-header-college span:nth-child(1) {
    flex: 0.3;
    text-align: center;
    margin-left: -8px;
    padding-right: 4px;
  }

  
  .ranking-row-college span:nth-child(1) {
    flex: 0.35;        /* Rank */
    text-align: left; /* keep left aligned */
  }
    
  .ranking-header-college span:nth-child(2),
  .ranking-row-college span:nth-child(2) {
    flex: 2;          /* Team */
    text-align: center;
  }

  .ranking-header-college span:nth-child(3),
  .ranking-row-college span:nth-child(3) {
    flex: 0.7;        /* Conference */
    text-align: center;
    border-right: none;
  }

  #rankings-div-titles {
    font-size: 1.3em;
  }
}