@font-face {
    font-family: "Nostalgia";
    src: url(../fonts/Nostalgia.otf);
}

@font-face {
    font-family: "Old Style";
    src: url(../fonts/OldStyle.ttf);
}

@font-face {
    font-family: "Great Roman";
    src: url(../fonts/IMFeGPrm29P.ttf);
}

 /* 
 color palette: 
    green: #1FB800 
    rgba(31, 184, 0, 1)
    blue: #007BB8
    rgba(0, 123, 184, 1)
    purple: #9900B8
    rgba(153, 0, 184, 1)
    brown: #B83D00
    rgba(184, 61, 0, 1)
 */
body {
    background-color: ghostwhite;
    margin: 0px;
    padding: 0px;
}
  
#banner {
    width: 100%;
    height: 500px;
    background-color: #181818;
    background-image: url('../images/fall_colors.jpg');
    background-size: cover;
}

#homepage-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr)
}

.category {
    align-self: center;
}

.skills-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr)
}

.skills-flexbox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

h1 {
    color: black;
    font-size: 48px;
    text-transform: uppercase;
    font-family: "Great Roman";
    align-self: center;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    margin-top: 0px;
    padding-top: 24px;
}


#intro {
    min-height: 300px;
}

#intro p {
    color: black;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 24px;
    padding-bottom: 24px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    text-align: center;
}

#skills-section {
    text-align: center;
    background-color: #181818;
    color: ghostwhite;
}

@media (min-width: 576px) {

}

@media (min-width: 768px) {
    
}

@media (min-width: 992px) {

}

@media (min-width: 1200px) {

}
