*{
    margin: 0;
    padding: 0;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
}
:root{
    --primary-color-1:#1B242E;
    --primary-color-2:#11171F;
    --secondary-color-1:#FFF0F3;
    --secondary-color-2:#FCFCFC;
    --accent-color:#FF4057;
}
body{
    background-color: var(--primary-color-2);
    color: var(--secondary-color-1);
}

.jm-font {
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.pjs-font{
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
#main_container{

}
#logo img{
    width: 30px;
     filter: brightness(0) invert(1) 
}
#social{
    display: flex;
    align-items: center;
}
#social a{
    color: var(--secondary-color-1);
    font-size: 1.5rem;
}
#social ul{
    display: flex;
    flex-direction: row;
}
#social ul li{
    margin-left:80px;
}
#top{
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 50px;
    box-sizing: border-box;
}
#center{
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#center h1{
    color:var(--accent-color);
    font-size: 7rem;
    margin-top: 600px;
}
#footer{
    position: fixed;
    width: 100%;
    bottom: 0;
    text-align: center;
    font-size: .8rem;
    padding-bottom: 20px;
}
#bg-video {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}
/* SOCIAL PAGE */
.social-page{
    display: flex;
    flex-direction: column;
    width: 400px;
    margin: auto;
}
.social-frame{
    background: rgba(9, 10, 12, 0.10);
    backdrop-filter: blur(8px);
    border: 1px solid var(--accent-color);
    padding: 30px;
    text-align: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 300;
    margin-top: 100px;
}
#social-text{
    margin-top: 30px;
}
#social-text p{
    margin-bottom: 10px;
}
.social-link-box{
    border: 1px solid var(--accent-color);
    padding: 20px 30px;
    margin-bottom: 20px;
    text-align: center;
}
.social-list-links{
    flex-direction: column;
    display: flex;
    font-size: 1.2rem;
    margin-top:25px;
    text-align: left;
}
.social-list-links li{
    display: inline-block;
    margin-right: 10px;
}
.social-list-links i{
    font-size: .9rem;
    margin-right: 10px;
}
.social-list-links a{
    color: var(--secondary-color-2);
    font-size: 1rem;
}
.social-link-box img{
    width: 15px;
    margin-right: 10px;
}
#l-logo{
    width: 100px;
    height: 100px;
    background-color: var(--primary-color-1);
    box-sizing: border-box;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border: 1px solid var(--accent-color);
}
#l-logo img{
    width: 30px;
}
        .m-video{
        display: none;
    }
    .d-video{
        display: block;
    }
/*****MEdia Querie******/
/*****XS - Small Phones******/
@media (width < 480px) { 
    .m-video { display: block; }
    .d-video { display: none; }
    #center h1{
    font-size: 3rem;
    margin-top: 300px;
}
#social ul li {
    margin-left: 30px;
}
.social-page{
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}
}
/*****SM - Phones******/
@media (width >= 480px) and (width < 768px) { 
    
}
/*****MD - Tablets******/
@media (width >= 768px) and (width < 1024px) {
  .m-video { display: none; }
  .d-video { display: block; }
}
/*****LG - Small laptops******/
@media (width >= 1024px) and (width < 1280px) { 
        .m-video { display: block; }
    .d-video { display: none; }
}
/*****XL - Large Screen******/
@media (width >= 1280px) and (width < 1536px) {
        #center h1{
    margin-top: 400px;
}
 }
