:root {
    --background: rgb(173,131,101);
    --header-background: #75A8EA;
    --text: #3A2C3A;
    --text-highlight: #C1DCFF;
    --text-unclickable: gray;
    --text-selected: aliceblue;
  }

html {
    overscroll-behavior-y: none;
}

@font-face {
    font-family: goudy;
    src: url("GOUDOS.TTF");
}

@font-face {
    font-family: cecep;
    src: url("CecepsHandwriting-vmpKZ.ttf");
}

@font-face {
    font-family: summer;
    src: url("summer.otf");
}

h1, h2, h3, h4 {
    font-weight: normal;
}

body {
    margin: 0;
    gap: 0;
    padding: 0;
    background-color: var(--background);
    display: block;
    color: white;
}

a {
    color: var(--text);
    text-decoration: none;
    transition: color .5s;
}

a:hover {
    color: var(--text-highlight);
}

.universal-header {
    position: relative;
    width: 100%;
    display: flex;
    text-align: center;
    background-color: var(--header-background);
    align-items: center;
    justify-content: center;
    height: 100px;
    font-family: goudy;
    font-size: 14pt;
    border-top: 5px solid rgb(48,48,48);
    border-bottom: 5px solid rgb(48,48,48);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.universal-header > div,
.universal-header > a {
    width: 150px;
}
.universal-header > .header-socials {
    width: 225px;
}

/* Dropdown Button */
.dropbtn, .sub-dropbtn {
    background-color: transparent;
    padding: 0px;
    border: none;
    font-family: goudy;
    font-size: 14pt;
    color: var(--text);
    text-decoration: none;
    transition: color .5s;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
}
.sub-dropdown {
    position: relative;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content, .dropdown-content .sub-dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--header-background);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
}
.dropdown-content {
    border-radius: 15px 15px 15px 15px;
}
.sub-dropdown-content {
    left: 155px;
    top:0px;
    border-radius: 15px 15px 15px 15px;
}

/* Links inside the dropdown */
.dropdown-content a, .dropdown-content div,
.sub-dropdown-content a {
    padding: 8px 8px;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover, .dropdown-content div:hover,
.sub-dropdown-content a:hover {
    color: var(--text-highlight);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content,
.sub-dropdown:hover .sub-dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn,
.sub-dropdown:hover .sub-dropbtn {
    cursor: pointer;
    color: var(--text-highlight);
}

.header-socials {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.header-socials > a {
    width: 75px;
}

.header-socials > a > img {
    height:32px;
}



.universal-footer {
    width: 100%;
    display: flex;
    text-align: center;
    background-color: black;
    color:aliceblue;
    align-items: center;
    justify-content: center;
    height: 50px;
    font-family: cecep;
    font-size: 14pt;
    /* position: sticky;
    bottom: 0; */
}

.universal-footer > div {
    width: auto;
    padding: 0 30px;
}

.footer-socials {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.footer-socials > a {
    width: 75px;
}

.footer-socials > a > img {
    height:32px;
}

#unhighlight {
    color: var(--text-selected);
}

#unhighlight:hover {
    color: var(--text-selected);
}
#semi-highlight {
    color: var(--text-highlight);
}
#semi-highlight:hover {
    color: var(--text-highlight);
}
#unclickable {
    color:var(--text-unclickable);
}
#header-home {
    width:100px;
    position:absolute;
    left:5%;
    top:0px;
}
@media screen and (max-width: 900px) {
    .header-socials {
        display: none;
    }
    #header-home {
        left: 0;
    }
    .universal-footer {
        flex-direction: column;
        height: 75px;
    }
    .universal-footer > div {
        width: auto;
    }
}
@media screen and (max-width: 750px) {
    .footer-socials > a {
        width: 50px;
    }
}
