:root {
    --primary-color: #00A2FF;
    --dropshadow-color: #DCDCDC;
}

.landing {
    
    background-color: var(--primary-color);
    height: 550px;

    display: flex;
    justify-content: center;
    align-items: center;

}

.landing img {
    width: 550px;
}

.project-description {
    font-size: larger;
}

.padded-container {
padding: 5rem 3rem;
}

.technologies {
    
}

.technologies-list-container {
    display: flex;
    justify-content: center;
}

.technologies-list {
    display: flex;
    gap: 20px;

    width: 95%;

    list-style-type: none;

    overflow: scroll;

    padding-left: 0px;
}

.technology-square {
    width: 220px;
    height: 220px;
    padding: 20px 20px;
    border-radius: 20px;
    background-color: #F0F0F0;
}

.technology-square img {
    height: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.technologies-list .subtitle {
    color: gray;
    font-size: 0.9rem;
    margin: 0px;

    line-height: .75;
}

.technologies-list .name {
    font-size: 1.3rem;
    
}

.schedule {
  max-width: 900px;
  margin: 40px auto;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--dropshadow-color);
  border-top: 6px solid var(--primary-color);
  border-bottom: 6px solid var(--primary-color);
}

.schedule table {
  width: 100%;
  border-collapse: collapse;
  font-family: inherit;
}

.schedule th,
.schedule td {
  padding: 20px 20px;
  text-align: left;
  vertical-align: top;
}

.schedule th {
  background: var(--primary-color);
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;

}

.archive {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--dropshadow-color);
  border-top: 6px solid var(--primary-color);
  border-bottom: 6px solid var(--primary-color);
}

.archive h1 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.archive-item {
  margin-bottom: 40px;
}

.archive-item h3 {
  margin-bottom: 8px;
  color: var(--primary-color);
}

.archive-item p {
  margin-bottom: 10px;
  color: #555;
}

.archive-item iframe {
  width: 100%;
  height: 400px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 8px;
}

.archive-item a {
  display: inline-block;
  margin-top: 4px;
  color: var(--primary-color);
  font-weight: bold;
}

