body
{
    margin: 0px;
}

header
{
    height: 150px;
    background-image: url(../images/banner.png);
    background-size: cover;
    background-position: center;
    background-position-y: 49%;
}

.headerclass
{
    height: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 15px;
    padding-left: 1vw;
    padding-right: 1vw;
    align-items: center;
}

#title
{
    color: rgb(255, 134, 0);
    font-size: 65px;
    margin: 0px;
}

.titletext
{
    font-family: 'Philosopher', sans-serif;
    font-weight: 700;
    color: rgb(143, 116, 41);
    text-decoration: none;
}

#searchcontainer
{
    height: 100%;
}

#searchbar
{
    align-self: center;
    height: 28%;
    width: 195px;
    background-color: rgb(232, 248, 234);
    opacity: 80%;
    border-radius: 7px;
    border-width: 0px;
    background-image: url(../images/search-icon.png);
    background-size: 1.59em;
    background-position: left;
    background-repeat: no-repeat;
    background-position-x: calc(100% - 8px);
    font-size: 1.1em;
    color: black;
    font-weight: 500;
    padding-left: 20px;
    padding-right: 45px;
    position: relative;
    top: 36%;
}

#searchbar:focus
{
    outline: none;
    border-width: 0px;
}

#searchresults
{
    width: 195px;
    height: 350px;
    background-color: rgb(242, 255, 255);
    opacity: 95%;
    border-radius: 10px;
    font-size: 1.1em;
    color: black;
    font-weight: 500;
    padding-left: 20px;
    padding-top: 15px;
    padding-right: 45px;
    position: relative;
    top: 36%;
    z-index: 1;
    visibility: hidden;
    font-family: 'Mukta', sans-serif;
}

.results
{
    
}

nav
{
    background-color: rgb(230, 250, 255);
    height: 56px;
    position: sticky;
    top: 0;
    z-index: 100;
}

#navcontainer
{
    display: flex;
    height: 50px;
    flex-direction: row;
    justify-content: start;
    gap: 0.6%;
    padding: 3px;
    align-items: center;
}

.navlink
{
    background-color: rgb(255, 248, 217);
    border-width: 0px;
    border-radius: 3px;
    height: 85%;
    padding-left: 2%;
    padding-right: 2%;
    font-size: 2.14em;
}

.navlink:visited
{
    text-decoration: none;
}

.navlink:hover
{
    cursor: pointer;
    background-color: rgb(231, 224, 191);
}

main
{
    display: flex;
    justify-content: center;
} 

.mainsection
{
    padding-top: 20px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
}

.maintext
{
    font-family: 'Mukta', sans-serif;
    color: rgb(0, 0, 0);
    font-weight: 400;
    font-size: 22px;
}

.sectiontitle
{
    font-family: 'Mukta', sans-serif;
    font-size: 35px;
    margin-top: 30px;
    margin-bottom: 30px;
    color: rgb(47, 60, 66);
}

footer
{
    display: block;
    height: 150px;
}

.footerclass
{
    height: 100%;
    display: grid;
    grid-template-columns: 5fr 1.4fr 5fr 1.4fr 5fr 1.4fr 5fr 1.8fr;
    align-items: center;
    justify-items: end;
    padding-left: 5vw;
    padding-right: 17vw;
    background-color: rgb(219, 245, 253);
}

.discord
{
    height: 40px;
    width: 40px;
    background-image: url(../images/discord-icon\ 3.png);
    background-size: 90%;
    background-position: center;
    background-repeat: no-repeat;
}

.youtube
{
    height: 40px;
    width: 40px;
    background-image: url(../images/youtube-icon.png);
    background-size: 95%;
    background-position: center;
    background-repeat: no-repeat;
}

.twitter
{
    height: 40px;
    width: 40px;
    background-image: url(../images/twitter-icon.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;    
}

.instagram
{
    height: 40px;
    width: 40px;
    background-image: url(../images/instagram-icon.png);
    background-size: 110%;
    background-position: center;
    background-repeat: no-repeat;
}

.icontext
{
    font-size: 20px;
    color: black;
    font-family: 'Bree Serif', serif;
    text-decoration: none;
}

.iconlink:visited
{
    text-decoration: none;
}