@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
    background-color: #000;
    max-width: 100%;
    max-height: 100%;

}

.header {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.header img {
    height: 100px;
    width: 100px;
}

.name {	
    color: #fff;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

* a {
    text-decoration: none;
    color: #fff;
}

.name h1 {
    color: #fff;
    text-align: center;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
    from {
      text-shadow: 0 0 10px #fff, 0 0 20px ;
    }
    to {
      text-shadow: 0 0 20px #fff, 0 0 30px;
    }
  }

.socialmedia i:hover{
    -webkit-animation: glow2 .5s ease-in-out infinite alternate;
    -moz-animation: glow2 .5s ease-in-out infinite alternate;
    animation: glow2 .6s ease-in-out infinite alternate;
} 

@-webkit-keyframes glow2 {
    from {
      text-shadow: 0 0 5x #fff, 0 0 20px ;
    }
    to {
      text-shadow: 0 0 10px #fff, 0 0 30px;
    }
  } 

.title {
    color: #fff;
    display: flex;
    justify-content: center;
    font-weight: 200;
}

.title h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 200;   
}

.socials {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    
}

.socialmedia {
    display: flex;
    width: 350px;
    justify-content: space-evenly;
    margin-top: 10px;
}

.fa-brands {
    color: #fff;
    font-size: 2rem;
}

.fa-brands:hover {
    transition: transform .2s;
    transform: scale(1.5);
}

#background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
 }

#particle {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    position: fixed;
}

.footer {
    background-color: red;
}


@media only screen and (max-width: 991px) {
    #background-video {
        top: 100%;
     }
    
    #particle {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        position: fixed;
    }
}