:root{
    --background-colour:#ff8010;
}
body{
    height: 100%;
    width: 100%;
    background-color: var(--background-colour);
    cursor: default;
}
#home{
    height: 100vh;
    background-image:url("/Untitled_design__4_-removebg-preview.png");
    background-repeat:repeat-x;
    background-size:100vh;
    background-position: bottom center;
    
}
header{
    display: flex;
    background-color: black;
    padding: 1%;
}
nav a{
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    color: #ff8010;
    font-style: normal;
    margin-left: 1.5em;
}
.hometext{
    justify-items: center;
}
.herotext {
    position: relative;
    margin-top: 2%;
    /* margin-left: 30%; */
    width: 80vw;
    height: 20vh;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hometext p{
    font-size: 1.5em;
    margin-bottom: 10%;
}
.English, .Marathi {
    position: absolute;
    text-align: center;
    transition: opacity 2s;
    font-weight: bold;
    font-size: 5em;
}

.English {
    font-family: "Gotu"; 
    z-index: 2;
    opacity: 1;
}

.Marathi {
    font-family: "Amita", serif;
    font-weight: 700;

    z-index: 1;
    opacity: 0;
}

/* When hovering the top element, hide it and show the bottom one */
.herotext:hover .English {
  opacity: 0;
}

.herotext:hover .Marathi {
  opacity: 1;
  margin-left: 10%;
}
#home button{
    background-color: white;
    color: black;
    border: black solid 1px;
    border-radius: 5px;
   font-family: "Gotu", sans-serif;
}
#about{
    min-height: 100vh;
    display: flex;
    gap: 2em;
    padding: 4%;
    justify-content: space-around;
    flex-wrap: wrap;
}
.text{
    width: 50%;
    font-family: "Amita";
}
.text h1{
    font-family: 'Gotu';
}
.image img{
    border: black solid 2px;
    border-radius: 25px;
}
#buy{
    background-image: url("/images/warscene.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    padding: 3%;
}
#buy h1{
    font-family: "Gotu";
}
#buy h3{
    font-family: "Poppins", sans-serif;
}
.cards{
    display:flex;
    flex-wrap: wrap;
    gap: 2em;
    padding: 3%;
}
.card{
    background-color: #ffffff75;
    border: #fff solid 3px;
    border-radius: 25px;
}
.card-cont{
    padding: 10%;
}
.deactive{
    color: rgb(59, 58, 58);
}
.card-cont a{
    padding: 5%;
    background-color: rgb(0, 72, 255);
    bottom: 2%;
    text-decoration: none;
    color: #fff;
    font-family: "Poppins", sans-serif;
    border: #fff solid 2px;
    border-radius: 25px;
}
#contact{
    margin: 4%;
    background-color: #fff;
    border-radius: 25px;
    padding: 5%;
}
#contact h1{
    font-family: "Inter", sans-serif;
}
form{
    display: grid;
    gap: 2em;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    font-weight: 600;

}
label{
    display: grid;
    gap: 5px;
}
input{
    padding: 2%;
    border-radius: 10px;
    color: black;
}
button{
    padding: 5%;
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    font-weight:700 ;
    transition:ease-out 0.3s;
}
button:hover{
    background-color: var(--background-colour);
    padding: 6%;
    font-size: 1em;
}
footer{
    color: white;
    background-color: black;
    padding: 2%;
    text-align: center;
}