@font-face {
	font-family: CodaCaption;
	src: url(fonts/CodaCaption-ExtraBold.ttf);
}

@font-face {
	font-family: Pecita;
	src: url(fonts/Pecita.otf);
}

@font-face {
	font-family: ArenqG;
	src: url(fonts/mr_ArenqG.ttf);
}

@font-face {
	font-family: PotraLightG;
	src: url(fonts/mr_PotraLightG-Light.ttf);
}

@font-face {
	font-family: Comfortaa;
	src: url(fonts/Comfortaa-Medium.ttf);
}

@font-face {
	font-family: Roboto-Light;
	src: url(fonts/Roboto-Thin.ttf);
}

@font-face {
	font-family: Questrial-Regular;
	src: url(fonts/Questrial-Regular.ttf);
}

@import url('https://fonts.googleapis.com/css2?family=Cousine:wght@400;700&display=swap');

body, html{
    background-color: rgba(15, 15, 15); 
    cursor: none;
}

p{
    font-family: 'Cousine', monospace;
    font-size: 20px;
    color: white;
}

.section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    transition: .1s;
}

.inside {
    text-align: center;
    padding: 20px;
    margin: 15px;
    z-index: 1;
    opacity: 0.7;

    transition: .1s;
}

.myVideo{
    /* width: 100%; */
    height: 111%;
}

.video-container {
    position: absolute;
    /* top: 0; */
    /* left: 0; */
    /* width: 100%; */
    height: 111%;
    /* margin-left: auto; */
    /* margin-right: auto; */
    /* transition: .1s; */
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(25, 25, 25);
    width: 100%;
    height: 111%;
    opacity: 0.2;

    transition: .1s;
}

.cursor{
    position: fixed;
    width: 35px;
    height: 35px;
    border: 2px solid #c6c6c6;
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: .1s;
}

.cursor2{
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: #c6c6c6;
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: .17s;
}

.icon{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    color: white;

    border: 2px solid #c6c6c600;

    transition: .15s;

    opacity: 0.7;
}

.icon:hover{
    border: 2px solid #c6c6c6;
    color: white;
    text-decoration: none;
    opacity: 1;

    cursor: none;
}

.link{
    padding: 0px;
    border-radius: 5px;
    border: 2px solid #c6c6c600;
    color: white;
    text-decoration: none;
    transition: .1s;
}

.link:hover{
    padding: 3px;
    margin: 1px;
    border-radius: 5px;
    border: 2px solid #c6c6c6;
    color: white;
    text-decoration: none;
    cursor: none;
}


.xcdto{
    font-family: PotraLightG;
    padding-bottom: 1px;
    font-size: 110px;
    /*background: linear-gradient(135deg, #12BCB0 20%, #FABE0E 70%);*/
    background: radial-gradient(circle, rgba(0,87,183,1) 0%,  rgba(255,215,0,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    background-size: 800% 800%;
    animation: gradient 7s ease infinite;
    opacity: 0.7;
}

@keyframes gradient {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

/* Particles */
#particles-js{ position:absolute; width: 100%; height: 100%; background-color: #181818; background-image: url(""); background-repeat: no-repeat; background-size: 20%; background-position: 50% 50%; } /* ---- stats.js ---- */ .count-particles{ background: #000022; position: absolute; top: 48px; left: 0; width: 80px; color: #13E8E9; font-size: .8em; text-align: left; text-indent: 4px; line-height: 14px; padding-bottom: 2px; font-family: Helvetica, Arial, sans-serif; font-weight: bold; } .js-count-particles{ font-size: 1.1em; } #stats, .count-particles{ -webkit-user-select: none; margin-top: 5px; margin-left: 5px; } #stats{ border-radius: 3px 3px 0 0; overflow: hidden; } .count-particles{ border-radius: 0 0 3px 3px; }