@import url('https://fonts.googleapis.com/css2?family=Blinker:wght@600&family=Handjet:wght@500&family=Press+Start+2P&family=Rubik&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/*****Header*****/
.nav{
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: black;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 50px;
    padding-right: 30px;
    font-family: 'Handjet', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 0.5px solid cyan;
    z-index: 100;
}
.player2logo{
    height: 70px;
    width: 70px;
}
.headerlinks{
    margin-left: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.headerlinks a{
    color: white;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.2s;
}
.headerlinks .links1{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.login-register-links{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}
.links1 a{
    padding: 20px;
}
.headerlinks a:hover{
    color: #FC5858;
}
.headerlinks a.active{
    color: cyan;
}

@media screen and (max-width: 600px){
    .nav{
        height: 60px;
        padding-left: 20px;
    }   
    .player2logo{
        height: 45px;
        width: 45px;
    }
    .headerlinks{
        margin-left: 10px;
        font-size: 16px;
    }
    .login-register-links{
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 25px;
    }
    .links1 a{
        padding: 12px;
    }
}
/*********************/





/***********Footer**************/
.footer-wrapper{
    background: black;
    padding: 50px 80px;
}
.footer-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.footer-container .line{
    width: 50%;
    height: 3px;
    margin-top: 10px;
    margin-bottom: 20px;
    background-image: linear-gradient(to right, cyan, red );
}
.footer-connections, .footer-feedback-form{
    width: 50%;
}
.footer-logo{
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    gap: 20px;
}
.footer-logo h1{
    font-family: 'Handjet', sans-serif;
    font-size: 50px;
    letter-spacing: 3px;
}
.footer-email{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    letter-spacing: 1.5px;
}
.footer-email i{
   font-size: 30px;
}
.footer-email p{
    font-size: 20px;
}
.footer-connections h2{
    font-family: 'Handjet', sans-serif;
    font-size: 30px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.footer-connections-links{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}
.footer-connections a{
    font-size: 34px;
    color: white;
    transition: 0.2s ease-in-out;
}    
.footer-connections a:hover{
    font-size: 40px;
    color: cyan;
}
.footer-feedback-form h2{
    font-family: 'Handjet', sans-serif;
    font-size: 30px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.footer-feedback-form p{
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 26px;
    margin-bottom: 20px;
    width: 90%;
}
.feedback-form-sections{
    display: flex;
    flex-direction: column;
    width: 90%;
    margin-bottom: 10px;
}
.feedback-form-sections label{
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.feedback-form-sections input, .feedback-form-sections textarea{
    font-family: 'Blinker', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding: 5px 8px;
    resize: none;
}
.feedback-sent-notification{
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: 1px;
    word-spacing: 1px;
}
.send-feedback-btn{
    text-align: center;
    word-spacing: -8px;
    letter-spacing: 2px;
    font-weight: bold;
    padding: 20px 15px;    
    background-color: rgb(135, 135, 135);
    text-shadow: -1px -1px black, 1px 1px rgb(0, 0, 0);
    color: white;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -o-border-radius: 7px;
    border-radius: 7px;
    box-shadow: 0 .2em rgb(79, 79, 79); 
    cursor: pointer;
    font-family: 'Press Start 2p';
    text-transform: uppercase;
    text-decoration: none;    
    transition: 0.4s ease-in-out;
}
.send-feedback-btn:hover{
    background-color: cyan;
    padding: 24px 18px;    
    box-shadow: 0.2em rgb(0, 99, 99); 
    color: black;
    text-shadow: none;
}

@media screen and (max-width:800px){
    .footer-wrapper{
        padding: 50px 20px;
    }
    .footer-container{
        flex-direction: column;
        gap: 150px;
        padding: 20px;
    }
    .footer-container .line{
        width: 100%;
        height: 2px;
        margin-bottom: 20px;
    }
    .footer-connections, .footer-feedback-form{
        width: 100%;
    }
    .footer-logo{
        justify-content: center;
        margin-bottom: 80px;
    }
    .footer-email i{
       font-size: 40px;
    }
    .footer-email p{
        font-size: 20px;
    }    

    .footer-connections-links{
        gap: 30px;
    }
    .footer-connections a{
        font-size: 40px;
    }    
    .footer-connections a:hover{
        font-size: 45px;
    }
    .footer-feedback-form p{
        font-size: 16px;
        width: 100%;
    }
    .feedback-form-sections{
        width: 100%;
    }
    .feedback-sent-notification{
        text-align: center;
    }
    .feedback-btn-section{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .send-feedback-btn{
        padding: 20px;
        letter-spacing: 3px;
        font-size: 16px;
        border: none;    
    }
    .send-feedback-btn:hover{
        padding: 24px;    
    }    
}
/*******************************/






/********Body*********/
body{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.5)),url(images/background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    font-family: 'Blinker', sans-serif;
}
/*********************/

/********About Us (nael part onwards)*********/
.aboutus-container{
    background-image: linear-gradient(rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.6)), url(images/background3.jpg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100dvh;
    padding: 80px;
    padding-top: 150px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.testimonial{
    background: rgba(0, 141, 255, 0.31);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.4px);
    -webkit-backdrop-filter: blur(6.4px);
    border: 1px solid rgba(0, 141, 255, 0.56);

    margin: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 30px;
    width: 80%;
}

.testimonial h1{
    font-family: 'Handjet', sans-serif;
    text-align: center;
    font-size: 70px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding-bottom: 10px;
}

.testimonial p{
    font-family: 'Blinker', sans-serif;
    text-align: justify;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 1px;
    font-weight: 200;
    color: rgb(200, 200, 200);
}
@media screen and (max-width: 800px){
    .aboutus-container{
        padding: 50px;
    }    
    .testimonial{    
        padding: 20px;
        width: 100%;
    }
    .testimonial h1{
        font-size: 40px;
    }
    .testimonial p{
        line-height: 22px;
        font-size: 14px;
    }

}
/*************************/





/********Our Vision and Mission*********/
.ovom-img{
    background-image: linear-gradient(rgb(0,0,0,0.5), rgb(0,0,0,0.5)),
    url(images/ovom.jpg);
    background-size: cover;
    background-position: center;
    height: 400px;
    width: 70%;
    background-repeat: no-repeat;
    margin: 50px auto;
    border-radius: 10px;

    object-fit: cover;
    border: 5px solid #3AF3FF;
    box-shadow: 10px 10px  rgba(252, 88, 88, 0.5);
}
.ovom-container{
    /* From https://css.glass */
background: linear-gradient(90deg, rgb(89, 0, 255), rgb(130, 0, 0));
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(7.1px);
-webkit-backdrop-filter: blur(7.1px);
border: 1px solid rgba(10, 0, 255, 1);

    display: flex;
    flex-direction: row;
    padding: 30px;
    margin: 50px auto;
    width: 90%;
}
.testimonial1{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    width: 50%;
}
.vision{
    background-color: rgb(180, 180, 180);
    padding: 15px 10px 15px 15px; 
    text-shadow: 3px 3px rgb(0, 0, 0,0.8);   
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -o-border-radius: 7px;
    border-radius: 7px;
    box-shadow: 0 .2em rgb(108, 108, 108);
    letter-spacing: 2px;

    font-family: 'Handjet', sans-serif;
    font-size: 55px;
    padding: 10px;
    margin-bottom: 20px;
}
.vision::before{
    content: 'OUR';
    margin-right: 10px;
}
.vision::after{
    content: 'VISION';
    color: cyan;
}
.paragraphs{
    text-align: justify;
    padding: 20px;
    line-height: 28px;
    font-size: 18px;
    letter-spacing: 1px;
    color: whitesmoke;
}
.divider{
    border-left: 2px solid white;
    margin-left: 20px;
    margin-right: 20px;
}
.testimonial2{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    width: 50%;
}
.mission{
    background-color: rgb(180, 180, 180);
    padding: 15px 10px 15px 15px; 
    text-shadow: 3px 3px rgb(0, 0, 0, 0.8);   
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -o-border-radius: 7px;
    border-radius: 7px;
    box-shadow: 0 .2em rgb(108, 108, 108);
    letter-spacing: 2px;
    font-family: 'Handjet', sans-serif;
    font-size: 55px;
    padding: 10px;
    margin-bottom: 20px;
}
.mission::before{
    content: 'OUR';
    margin-right: 10px;
}
.mission::after{
    content: 'MISSION';
    color: #ff3e3e;
}
@media screen and (max-width:800px){
    .ovom-img{
        height: 200px;
        width: calc(100% - 80px);    
        border: 2px solid #3AF3FF;
        box-shadow: 5px 5px  rgba(252, 88, 88, 0.5);
    }
    .ovom-container{    
        flex-direction: column;
        width: 100%;
    }
    .testimonial1{
        align-items:normal;
        width: 100%;
    }
    .vision{
        text-shadow: 2px 3px rgb(0, 0, 0);       
        font-size: 40px;
        text-align: center;
    }
    .paragraphs{
        line-height: 24px;
        font-size: 16px;
        width: 100%;
    }
    .divider{
        border: 1px solid white;
        width: 100%;
        margin: 0;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .testimonial2{
        align-items:normal;
        width: 100%;
    }
    .mission{
        text-shadow: 2px 3px rgb(0, 0, 0);       
        font-size: 40px;
        text-align: center;
    }
}
/***************************************/

/********Our Story*********/
.ourstory-container{
    background-image: linear-gradient(rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.4)), url(images/os.jpg);
    background-size: cover;
    display: flex;
    flex-direction: row;
    align-items: center;

    padding: 60px;
    width: 100%;
    border-radius: 5px 5px 0 0;
    background-position: center;
    background-repeat: no-repeat;
}
.testimonial3{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 50%;
    padding: 20px;

    background: linear-gradient(90deg, rgb(89, 0, 255), rgb(130, 0, 0));
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.1px);
    -webkit-backdrop-filter: blur(7.1px);
    border: 1px solid rgba(10, 0, 255, 1);

}
.story{
    background-color: rgb(180, 180, 180);
    padding: 15px 10px 15px 15px; 
    text-shadow: 3px 3px rgb(0, 0, 0);   
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -o-border-radius: 7px;
    border-radius: 7px;
    box-shadow: 0 .2em rgb(108, 108, 108);
    letter-spacing: 2px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    font-family: 'Handjet', sans-serif;
    font-size: 55px;
    padding: 10px;
    margin-bottom: 30px;

}
.story::before{
    content: 'OUR';
    margin-right: 10px;
}
.story::after{
    content: 'STORY';
    color: white;
}
.paragraphs-story{
    text-align: justify;
    margin-bottom: 20px;
    line-height: 28px;
    font-size: 18px;
    letter-spacing: 1px;
    color: whitesmoke;
}

.os-img{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 50px;
    width: 50%;

    object-fit: cover;
    border: 5px solid #3AF3FF;
    box-shadow: 10px 10px  rgba(252, 88, 88, 0.5);
}

@media screen and (max-width: 800px){
    .ourstory-container{    
        padding: 50px;
        height: auto;
        flex-direction: column;
        gap: 50px;
    }
    .testimonial3{
        width: 100%;
        padding: 20px;
    }
    .story{
        font-size: 40px;
    }
    .paragraphs-story{
        text-align: justify;
        margin-bottom: 20px;
        line-height: 24px;
        font-size: 16px;
    }
    .os-img{
        margin: 0;
        width: 100%;
        border: 2px solid #3AF3FF;
        box-shadow: 5px 5px  rgba(252, 88, 88, 0.5);
    }
}
/*************************/
