/* Global */

*{
    box-sizing:  border-box;
}

html{
    font-size: 16px;
    font-family: 'Courier New', Courier, monospace;
    background-color: #2F4F4F;
    color: #D3D3D3;

}

a{
    color: #87CEFA; /* Styles all links */
    font-weight: bolder;
    text-decoration: none; /* Removes underline from links */
}

h1{
    font-weight:bolder; /* Hopefully this is clear enough (change if not Cooper) */
}

/* Homepage Style */

.container{
    margin: 20px;
    padding:20px;
}

.subforum{
    margin-top:20px;
}

.subforum-title{
    background-color:#292B2E;
    padding: 5px;
    border-radius: 5px;
    margin:4px;
}

.subforum-description *{
    margin-block: 0;
}

.subforum-row{
    display: grid;
    grid-template-columns: 7% 60% 13% 20%;
}

.subforum-column{
    padding: 10px;
    margin:4px;
    border-radius: 5px;
    background-color:#292B2E;
}

.subforum-description {
    font-size: 14px;
    background-color:#292B2E;
}

.center{ /* Centers components horizontally and vertically */
    display: flex;
    justify-content: center;
    align-items: center;
}

.subforum-divider{
    display: none;   
}

/* For Phones*/
@media screen and (max-width: 460px) {
    .container{
        margin: 10px;
        padding: 10px;
    }

    .subforum-row{
        display: grid;
        grid-template-columns: 25% 75%;
        grid-template-rows: 65% 35%;
    }

 
    .subforum-devider{
        display: block;
        border: 0;
        height: 1px;
        background-image: linear-gradient(to right, #2F4F4F, #ffffffbf, #bebebe00);
    }
  }


   /* For Tablets */
  @media screen and (min-width: 460px) and (max-width: 1024px) {
    .container{
        margin: 15px;
        padding: 15px;
    }

    .subforum-row{
        display: grid;
        grid-template-columns: 10% 60% 10% 20%;
    }

    .subforum-icon i{
        font-size: 35px;
    }

    html{
        font-size: 14px;
    }

    h1{
        font-size: 16px;
    }
  }


  /* NAV Bar */

  header{
    margin-inline: 10px;
  }

  .navbar{
    display: flex;
    align-items: center;
  }

.navigation{
    background-color: rgb(11, 53, 53);
    padding: 10px; /* Find if this is enough room, change if too close */
    width: 65%;
    display: inline-block; 
    border-radius: 5px;
    max-height: 80px;
    margin-right: 10px;
}

/* Does this remove the bullet links?     -yes*/
.nav-list{
    list-style-type: none;
    overflow: hidden;
}
.nav-items a{
    float: right;
    display: block;
    text-align: center;
    margin-inline: 20px;
    font-size: 20px;
    padding: 10px;
    color: #87CEFA;
}

.nav-items a:hover{
    background-color: #292B2E;
}

.close-icon i{
    font-size: 60px;
    float: left;
    cursor: pointer;
}

.hide{
    display: none;
}

.bar-icon{
    font-size: 60px;
    display: inline-block;
    margin-right: 10px;
    color: #D3D3D3;
    cursor: pointer;

}

@font-face{
    font-family: aquire;
    src:url(Aquire.otf);
}


.brand{
    font-size: 50px;
    font-family: cursive;
    display: inline-block;
}


/* NAV Bar for Phones */

@media screen and (max-width: 460px){
    .navigation{
        max-height: auto;
    }
    

    .nav-items a{
        float: left;
        display: inline;
        text-align: center;
        margin-inline: 3px;
        font-size: 10px;
        padding: 5px;
    }

    
    .close-icon i{
        font-size: 30px;
       
    }
    
    .hide{
        display: none;
    }

    .brand{
        font-size: 20px;
    }
}


/* Search Box */

.search-box{
    border:solid 1px #87CEFA;
    margin-top: 20px;
    padding: 40px;
    display: flex; /* Center elements*/
    justify-content: center;
    box-shadow: 1px 2px 3px #87CEFA;

}


.search-box select{
    padding: 10px;
}

.search-box input{
    padding: 10px;
}

.search-box button{
    padding: 10px;
    background-color: #87CEFA;
    color: #292B2E;
}

.search-box button.hover{
    background-color: #292B2E;
    color: #87CEFA;
    box-shadow: 1px 2px 3px #87CEFA;
}

/* Search Box for Phones */

@media screen and (max-width: 460px) {
    .search-box input, .search-box button, .search-box select{
        min-width: 300px;
        margin-top: 5px;
    }
}

.forum-info{
    padding: 20px;
    background-color: #292B2E;
}

.chart{
    font-size: 20px;
    font-weight: bold;
}