@import url('fonts.css');
html {
    scroll-behavior: smooth;
}
:root {
    --body-color: rgba(0, 0, 0, 0.74);;

    --transparent: rgba(0, 0, 0, 0.158);

    --primary-color: #252525;
    --primary-color-transparent: rgba(37, 37, 37, 0.8);

    --secondary-color: #155fff;
    --secondary-color-transparent: #155fff41;

    --custom-color: #b9c0ff;

    --color3: #0E185F;
    --color4: #5800FF;
    --color5: #7900FF;
    --color6: #B983FF;
}
* {
    cursor: url('src/cursor/cur.png'), auto;
}
a {
    transition: all 2s ease-in-out;
    color: var(--custom-color);
    text-decoration: none;
    animation-fill-mode: forwards;
}
/* a:hover {
    color: var(--secondary-color);
} */
/* a:hover::after {
    font-family: bedug;
    color: red;
    content: "?";
    position: absolute;
    animation: fadeInOut 2s ease-in-out infinite;
    animation-fill-mode: forwards;
    animation-play-state: running;
} */



@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

::-webkit-scrollbar {
    width: 0.1vw;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #000;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--color3);
  }
body {
    margin: 0;
    background-image: url('src/backgrounds/homeBackground.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: var(--custom-color);
    background-blend-mode: multiply;
    transition: background-color 2s ease-in-out;
}
.middlecontainer {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30%;
    /* background: rgba(0, 0, 0, 0.158); */
}
.titlecontainer {
    margin-left: auto;
    margin-right: auto;
    /* background: red; */
}
.home .middlebody {
    padding-top: 2vh;
    font-family: panton;
    background: var(--body-color);
    height: 100%;
}
.titlecontainer .title {
    position: relative;
    font-family: mortend;
    font-size: 5vh;
    top: 2.5vh;
}
.contentcontainer { 
    color: #fff;
    font-family: panton;
    text-transform: uppercase;
}
.contentTitle {
    font-family: bedug;
}
.contentBody {
    font-family: panton;
}
#contact {
    background: #000;
    width: 100%;
}
#contact .contentTitle {
    transition: color 0.5s;
    text-align: center;
}
#contact .contentBody {
    text-align: center;
}
#titleType {
    /* transition: color 2s; */
    color: #fff;
    filter: contrast(2);

    position: relative;
    z-index: 1000;
}
#coverheader {
    display: none;
    width: 100% !important;
    font-family: panton;
    color: var(--color2);
    font-size: 3.3vh;
    text-align: right;
    z-index: 0;
}
#idoverlay {
    z-index: 10000;
    position: absolute;
}