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

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Oswald", Helvetica, sans-serif;
}

canvas {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 4;
    pointer-events: none;
}
.button-container {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: left;
  }
  
  .button-container button {
    padding: 10px 18px;
    background-color: #7474c3;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
  }
  
  .button-container button:disabled {
    opacity: .8;
    cursor: not-allowed;
  }

body,
html {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#bg {

    background: rgb(195,55,100);
    background: linear-gradient(to bottom right,rgb(0 214 255 / 76%), rgb(225 0 255));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.main {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.info ul,
.info404 ul,
.socials ul {
    display: flex;
    justify-content: space-evenly;
    list-style-type: none;
    color: #eee;
}

h1 {
    font-family: FuturaPaneuropeanBold;
    margin-bottom: 10px;
    font-size: 100px;
    color: #eee;   
    text-shadow: 0 1px 0 #999, 
                0 2px 0 #999999,
                0 3px 0 #888,
                0 4px 0 #898989,
                0 5px 0 #777,
                0 6px 1px rgba(0,0,0,.2),
                0 0 5px rgba(0,0,0,.2),
                0 1px 3px rgba(0,0,0,.4),
                0 3px 5px rgba(0,0,0,.3),
                0 5px 10px rgba(0,0,0,.35),
                0 10px 10px rgba(0,0,0,.3),
                0 20px 20px rgba(0,0,0,.25);
	/*background-image: linear-gradient(
        45deg,
        #00FFF3 16.666%, 
        #FFFFFF 30.000%);
	
	background-size: 100%;
    background-repeat: repeat;
	
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
	
	animation: simple-animation-rev 0.75s ease forwards;*/
  
}

/*h1:hover{
    animation: simple-animation 0.75s ease-in forwards;
}*/


.info ul li {
    margin: 0 18px;
    letter-spacing: 1px;
	/* font-size: 23px; */
}.info404 ul li {
	margin: 3px 5px;
    letter-spacing: 1px;
	font-size: 18px;
}

.socials ul {
    margin-top: 30px;
}

.socials ul li {
    color: #eee;
    margin: 0 15px;
    font-size: 30px;
    border: 3px solid rgba(0,0,0,0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: 0.2s;
    background: rgba(0,0,0,0.2);
}

.socials ul li:hover {
    transform: scale(1.2);
}

.noDecoration, a:link, a:visited {
    color: #ccc;
    letter-spacing: 1.2px;
    font-weight: 200;
    text-decoration: none!important;
}
@keyframes simple-animation-rev {
    0% {
        background-size: 750%;
    }
    40% {
        background-size: 650%;
    }
    100% {
        background-size: 100%;
    }
}
@keyframes simple-animation {
    0% {
        background-size: 100%;
    }
    80% {
        background-size: 650%;
    }
    100% {
        background-size: 750%;
    }
}
@media (max-width: 660px) {
    h1 {
        font-size: 55px;
    }

    .socials ul li {
        font-size: 20px;
        margin: 0 7px;
        width: 45px;
        height: 45px;
    }

    .info ul li {
        margin: 0 9px;
        letter-spacing: 1px;
        font-size: 14px;
    }
}

@media (max-width: 460px) {
    .info ul li {
        margin: 0 7px;
        letter-spacing: -0.1px;
        font-size: 13px;
        font-weight: 100;
    }
}

@media (max-width: 350px) {
    h1 {
        font-size: 38px;
    }

    .info ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .socials ul li {
        font-size: 17px;
        margin: 0 5px;
        width: 35px;
        height: 35px;
    }
}