@import url('https://fonts.cdnfonts.com/css/cunia');

body {
    background-color: #0F0F0F;
    height: 100%;
    overflow: hidden;
    margin: 0;
}

.dropShadow{
    filter: drop-shadow(9px 11px 40px rgba(0, 0, 0, 0.5));
    -webkit-filter: drop-shadow(9px 11px 40px rgba(0, 0, 0, 0.5));
}

.disableSelect{
        -webkit-user-select: none;
            /* Safari */
            -ms-user-select: none;
            /* IE 10 and IE 11 */
            user-select: none;
            /* Standard syntax */
}

h1{
    font-family:'Cunia', sans-serif;
    font-size:4.5rem;
    color: rgba(255, 255, 255, 0.85) !important;
    cursor: default;
    text-shadow:9px 11px 40px rgba(0, 0, 0, 0.5);
    margin-bottom:15px;
}

.socials {
    display: flex;
    margin: 0;
    /* position: absolute; */
    left: 50%;
    z-index: 99999999999;
}

.btn-social {
    /* background-color:#ee4540!important; */
    /* border:2px solid white!important; */
    all: unset;
    padding: 8px 20px;
    /* border-radius:5px; */
    font-size: 2rem;
    margin: 20px;
    color: rgba(255, 255, 255, 0.716) !important;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.1em;
    z-index: 99999999999;
    will-change: transform;
    transition: transform 450ms;
    border: 2px solid rgba(255, 255, 255, 0) !important;
    transition-delay: 325ms;
    transition: all 325ms;
    /* text-shadow: 
    1px 0px 1px #000, 0px 1px 1px #000, 
    2px 1px 1px #000, 1px 2px 1px #000,
    3px 2px 1px #000, 2px 3px 1px #000,
    4px 3px 1px #000; */
}


.btn-social:hover {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.85) !important;
    transition: all 325ms;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    /* transform: translateY(-10px); */
    border: 2px solid rgba(255, 255, 255, 1) !important;

}

.container-container {
    z-index: 11;
    margin-top: 12vh;
    display: flex;
    align-items: top;
    justify-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

.container {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
    /* top: 50%; */
    width: 25%;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    50% {
        scale: 2, 2.4;
    }

    to {
        transform: rotate(359deg);
    }
}

.logo {
    max-width: 400px;
    max-height: 4000px;
}

video {
    filter: brightness(0.08) blur(5px);
    z-index: 10;
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    -webkit-filter: brightness(0.08) blur(5px);
}

.enableBlur>* {
    filter: blur(150px);
    -webkit-filter: blur(150px);
}

#orbtainer {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

#orbbg {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #0F0F0F;
    filter: opacity(0.5);
    z-index: 9;
}

#orb {
    scale:2.0;
    transition-duration: 1500ms;
    transition-timing-function: ease-out;
    position: absolute;
    height: 500px;
    width: 500px;
    background: rgb(65, 21, 194);
    background: -webkit-linear-gradient(left, rgba(65, 21, 194, 1) 0%, rgba(15, 212, 211, 1) 100%);
    background: -moz-linear-gradient(left, rgba(65, 21, 194, 1) 0%, rgba(15, 212, 211, 1) 100%);
    background: -o-linear-gradient(left, rgba(65, 21, 194, 1) 0%, rgba(15, 212, 211, 1) 100%);
    background: linear-gradient(to right, rgba(65, 21, 194, 1) 0%, rgba(15, 212, 211, 1) 100%);
    border-radius: 50%;
    animation: rotate 20s ease-in-out 0s infinite alternate;
    animation-timing-function: ease-in-out;
    z-index: 10;
}

/* #blur {
  width: 100%;
  height: 100%;
  position: absolute;
  backdrop-filter: blur(200px);
  z-index: 2;
} */