@import url('https://fonts.cdnfonts.com/css/bebas-neue');
@import url('https://fonts.cdnfonts.com/css/norwester');
@import url('https://fonts.cdnfonts.com/css/raleway-5');
@import url('https://fonts.cdnfonts.com/css/starcruiser');
@import url('https://fonts.cdnfonts.com/css/calling-code');
@import url('https://fonts.cdnfonts.com/css/naishila-dancing-script');
@import url('https://fonts.cdnfonts.com/css/black-forest');
@import url('https://fonts.cdnfonts.com/css/liu-jian-mao-cao');
@import url('https://fonts.cdnfonts.com/css/cyberverse');
@import url('https://fonts.cdnfonts.com/css/lulo-clean');
@import url('https://fonts.cdnfonts.com/css/nyctalopia');

html {
    height: 100%;
    
    background-color: black;
    color: rgb(255, 255, 255);
    font-family: 'Calling Code', sans-serif;
}

body {
    min-height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}














  
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 1.4rem;
    height: 4rem;
    padding: 1rem;
}

.header-group {
    flex-basis:100%;
    height: 100%;

    display: flex;
    align-items: center;
}

.header-group:nth-child(1) {
    justify-content: start;
}

.header-group:nth-child(2) {
    justify-content: space-evenly;
}

.header-group:nth-child(3) {
    justify-content: end;
}

header img {
    height: 100%;
    margin-right: 1rem;
}

.image-container {
    height: 100%;
    position: relative;
    display: inline-block;
}
  
img.shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    filter: brightness(0.5) sepia(1) saturate(10000%) hue-rotate(300deg) blur(4px);
    opacity: 0.9;
    z-index: -1;
}


header h2,
header a {
    text-decoration: none;
    color: white;
    /*text-shadow: -2px -2px 4px rgb(255, 4, 242), 2px 2px 4px rgb(184, 4, 255);
*/  
    transition: all 0.15s ease-in-out;
}

header h2:hover,
header a:hover {
    text-shadow: -2px -2px 4px rgb(255, 4, 242), 2px 2px 4px rgb(184, 4, 255);
    transform: scale(1.1);
}

h1, h2, h3 {
    text-align: center;
    /*
    text-shadow: -2px -2px 0px rgb(255, 4, 242);
    text-shadow: -2px -2px 4px rgb(255, 4, 242), 2px 2px 4px rgb(184, 4, 255);
*/
}

header.scrolled {
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}













main {
    flex: 1;
}

.main-content:last-child {
    padding-bottom: 6rem;
}

/* add the common css here */










  
footer {
    background-image: linear-gradient(rgba(18, 2, 32, 0.6), rgba(46, 8, 78, 0.6));
    background-size: cover;
    border-top: 2px solid rgb(222, 59, 255);
    box-shadow: 0 0 10px rgb(222, 59, 255);
}

.footer-content {
    padding: 2rem 6rem;
}

.footer-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-group {
    padding: 0 1rem;
}

.footer-row:last-child {
    border-top: 2px solid white;
}

.footer-row:first-child .footer-group:first-child{
    width: 40%;
}

footer ul {
    list-style: none;
    padding: 0;
}

.footer-row:first-child .footer-group:last-child {
    text-align: end;
}

footer a {
    color: white;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
}


footer a:hover {
    text-shadow: -2px -2px 4px rgb(255, 4, 242), 2px 2px 4px rgb(184, 4, 255);
    transform: scale(1.1);
}

.icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icons li {
    margin: 0 0.4rem;
}




.brand-name {
    text-shadow: 2px 2px 8px rgb(204, 12, 252);
    text-align: start;
    /* idk if I should keep this */
}
