/*-START COPY-*/

/*-----FONT IMPORT-----*/
@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Russo+One&display=swap');


/* -----EVERYTHING ELSE-----*/
.active {
    background-color: #00A5EC;
    color: #860b0b;
}

body {
    width: 100%;
    margin: 0;
    background-color: rgb(100,100,100);
    font-family: 'Russo One', sans-serif;
}

.smegmatajm {
    font-family: 'Dela Gothic One', cursive;
    background-image: linear-gradient(90deg, #ff1c99, #fbf715);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 30px;
    padding-right: 20px;
    padding-left: 10px;
    text-align: center;
    /*text-shadow: 2px 2px 2px rgb(41, 41, 41);*/
}

h6 {
    font-weight: 100;
}
h5 {
    font-weight: 200;
}
h4 {
    font-weight: 300;
}

.content {
    color: #FFFFFF;
    text-align: center;
}




/* ----- BOTH STYLE (BOTH)  -----*/
.lang-button {
    font-size: 16px;
    border: none;
    outline: none;
    width: 100%;
    /*color: white;*/
    /*padding: 14px 16px;*/
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
}

.lang-button:hover {
    background-color: #505050;
}

.dropdown-contents button {
    float: none;
    color: #FFFFFF;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}





/* -----NAVBAR STYLE (THICC)-----*/
.dropdown .dropdown-contents {
    display: none;
    position: absolute;
    background-color: #666666;
    box-shadow: 5px 5px 5px;
    z-index: 1;
}

.navbar {
    overflow: hidden;
    background-color: #333;
    text-align: center;
    display: flex;
    justify-content: center;
    box-shadow: 0px 5px 5px;
}

.navbar .nav-txt {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown:hover .dropdown-contents {
    display: block;
}

.dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
}

.navbar .nav-txt:hover, .dropdown:hover .dropbtn {
    background-color: rgb(92, 92, 92);
}

.dropbtn img {
    display: block;
}





/* -----TOPNAV STYLE (HAMBURGER)----- */
.topnav {
    overflow: hidden;
    background-color: #333;
    position: relative;
    box-shadow: 0px 5px 5px;
}
  
.topnav #myLinks {
    display: none;
}

.topnav #myLinks a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
}
  
.topnav .nav-txt {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: inline-flex;
}
  
.topnav a.icon {
    background: black;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    color: white;
    padding: 11.5px 15px;
    width: auto;
    text-decoration: none;
    font-size: 17px;
}
  
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.sec-sus {
    display: inline-flex;
}

.topnav .dropdown-contents {
    display: none;
    position:absolute;
    margin-top: 60px;
    background-color: #666666;
    box-shadow: 5px 5px 5px;
}

.sec-sus:hover .dropdown-contents {
    display: block;
}

.topnav .nav-txt:hover, .sec-sus:hover .ham-dropbtn {
    background-color: rgb(92, 92, 92);
}

.ham-dropbtn {
    font-family: inherit;
    margin: 0;
}






/*-----FOOTER-----*/
.footer {
    bottom: 0px;
    overflow: hidden;
    background-color: #333;
    text-align: center;
    color: #FFFFFF;
    position: absolute;
    width:100%;
    display: flex;
    justify-content: center;
    box-shadow: 0px -3px 5px #000;
}

.footer a {
    text-decoration: underline;
    color: #FFFFFF;
}

.footer a:hover {
    color: #a0a0a0;
}

.footer div {
    margin-right: 10px;
    float: left;
}
/*-END COPY-*/