*{
    text-align: center;
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: #888888;
    font-family: Arial, sans-serif;
}

.defaultBody
{
    display: grid;
    grid-template-rows: auto auto auto;
}

body {
    background-color: #000000;
}

nav {
    background-color: #222222;
}

nav div, h1 {
    margin: 2rem;
    font-size: 2rem;
    color: #eeeeee;
}

section {
    margin: 0 8% 0 8%;
    margin-top: 1rem;
}

.links a.activePage {
    color: #eeeeee;
}

.links a{
    color: #555555;
    padding: 0 1rem 0 1rem;
}

.card h3{
    color: #eeeeee;
}
.card h4{
    color: #3a3a3a;
}
.card {
    width: 100%;
    height: fit-content;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
}
.card img {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.cardSection {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
}

/* On screens that are 600px or less */
@media screen and (max-width: 600px) {
    .cardSection
    {
        grid-template-columns: 1fr 1fr;
    }
}

/* On screens that are 400px or less */
@media screen and (max-width: 400px) {
    .cardSection
    {
        grid-template-columns: 1fr;
    }
}

.ytVideo {
    aspect-ratio: 16/9;
}

.icon {
    width: 42px;
    height: 42px;
    background-color: #000000;
    border-radius: 50%;
    fill: #555555;
}

footer {
    display: grid;
}

.aboutSection {
    margin: 1rem 20% 3rem 20%;
    font-size: larger;
}

.aboutSection p {
    text-align: left;
    
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .row {
    display: flex;
  }

  .row p {
    width: 50%;
  }

  .row img {
    width: 50%;
    height: fit-content;
  }

  /* On screens that are 850px or less */
@media screen and (max-width: 850px) {
    .row {
        display: block;
    }
    .row p {
        width: unset;
    }
    .row img {
        width: 100%;
    }
}

  .button {
    background-color: #686868;
    border: none;
    border-radius: 12px;
    color: white;
    padding: 15px 32px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    cursor:pointer;
  }
  
  .button:hover {
    background-color: #999999; /* Green */
    color: white;
    }