@font-face {
    font-family: font;
    src: url('../assets/font.ttf');
}
*{
    font-family: font;
    scroll-behavior: smooth;
}
body{
    margin:0px;
}
.bg{
    width: 100%;
    height: 100%;
    background-image: url(../bg/bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    z-index: -1;
}
.main{
    width: 100%;
    height: 100%;
    z-index: -1;
}
.mcontent{
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.162);
    position: fixed;
    z-index: 0;
}
.mcontent .links{
    display: flex;
}
.mcontent img{
    width: 90%;
    max-width: 950px;
}
.mcontent button{
    text-align: center;
    font-size: 2em;
    letter-spacing: 3px;
    font-weight: bold;
    text-decoration: none;
    border: 5px solid rgb(255, 255, 255);
    background: linear-gradient(145deg, rgba(46,115,28,1) 0%, rgba(54,136,33,1) 25%, rgba(185,185,185,1) 100%);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    height: 70px;
}
@media only screen and (max-width: 600px) {
    .mcontent button{
        font-size: 1.8em;
    }
    .mcontent .links{
        flex-direction: column;
        align-items: center;
    }
    pre{
        margin:0px;
    }
    
}
.mcontent button:hover{
    border-radius: 10px;
    letter-spacing: 5px;
    color: white;
    background: linear-gradient(145deg, rgba(185,185,185,1) 0%, rgba(54,136,33,1) 80%, rgba(46,115,28,1) 100%);
    border:5px solid;
}
article{
    position: relative;
    background-color: rgba(0, 0, 0, 0.162);
    
}
#about{
    background-color: rgba(0, 0, 0, 0.162);
    background-image: url(../bg/bg2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
#equipments{
    background-color: rgba(0, 0, 0, 0.162);
    background-image: url(../bg/bg3.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
#events{
    background-color: rgba(0, 0, 0, 0.162);
    background-image: url(../bg/bg4.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.heading{
    text-align: center;
    font-weight: bold;
    font-size: 8em;
    letter-spacing: 5px;
    text-shadow: 4px 4px #ffffff;
}
.content{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    background-color: rgba(36, 36, 36, 0.262);
}
.content p{
font-size: 1.8em;
}
.content .para{
    width: 90%;
    padding:10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: 5px solid white;
    border-radius: 20px;
}
@media only screen and (max-width: 600px) {
    .heading{
        font-size:5em ;
    }
    .eq{
        font-size: 5em;
    }
}
@media only screen and (min-width: 1300px) {
    .content .para{
        width: 55%;
    }
}
.imgs{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
}