* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
body, html {
  height: 100%;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

:root {
  --main-color: #2d61f0;
}
/* .foooter {
  grid-area: footer;
}
.headder {
  grid-area : headder ;
}
.sloogan {
  grid-area: slogan;
} */
.Hero {
    justify-content: center;
    display: grid;
    grid-template-areas: "- ge ge - "
    "slogan slogan slogan slogan"
    "- - - - "
    "- - - - ";
    padding: 20px;
}
.nav div {
  width : 25% ; 
  height : 200% ; 
  background-color: aquamarine;
  border: 3px solid red;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  
  
}
body {
    background: 
        linear-gradient(
            rgba(255, 255, 255, 0.7),
            rgba(255, 255, 255, 0.7)
        ),
        url('Screenshot 2026-02-01 140730.png');
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
}
.superheader {
  display: flex;
  width: 100%;
  height : 15vh ;
  padding-left: 16%;
  border: 4px solid blue ;
  background: linear-gradient(to left , white , rgb(211, 128, 128));
  margin-bottom: 1%;
  font-size: 2.5vh;
  text-align: center;
  align-items: center;
  

}

.nav div:hover {
  background: linear-gradient(
    to bottom,
    aquamarine,
    #6e9ed1
  );
}
.nav1 {
  border-top-left-radius: 50% ;
  border-bottom-left-radius: 50% ;
}
.nav3 {
  border-top-right-radius: 50% ;
  border-bottom-right-radius: 50% ;
}
.nav {
  justify-content: center;
  display: flex;
  text-align: center;
  align-items: center;
  height: 6vh;
  margin: 50px;
  font-size: 1vw;
}
a {
  text-decoration: none; 
}

.greedy {
    display: grid;
    grid-template-areas:
        "gamename gamename"
        "buttony slogan";
    width: 100%;
    gap: 10px;
    background-color: #d63ad6;
    padding: 10px;
}

.greedy div {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 20px;
  font-size: 30px;
}
.gamename {
    grid-area: gamename;
}

.slogan {
    grid-area: slogan;
}
.links {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 2.2vw;
    display: block;
    text-align: center;
}
.links:hover {
  color: #3c3d08;
}
.buttony {
    grid-area: buttony;
    background-color: #2196F3;
}
.buttony:hover {
  background-color: rgb(80, 216, 53);
}


.iconicgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.imaginary {
    background-color: rgb(53, 223, 194);
    margin: 10px;
}

.checkimg {
            width: 95%;
            margin: 5px;
            height: 220px;
            object-fit: cover;
            display: block;
            border-bottom: 1px solid #eee;
        }
.sec {
            padding: 20px;
            text-align: center;
            font-weight: 600;
            color: #2c3e50;
            font-size: 1.3rem;
            align-items: center;
            justify-content: center;
}

@media (max-width: 768px) {
    .iconicgrid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 360px;
        margin: 0 auto 40px;
    }
}

.mygridfooter {
  display: grid;
  grid-template-areas:
    "name . . code "
    ". copyright copyright .";
  width: 60%;
  margin : 0 auto ;
  gap: 20px;
  font-size: 1.6vw;
  border:5px solid rgb(99, 40, 40) ;
  padding: 20px;
  background-color: var(--main-color);
  padding: 10px;
  font-size: 20px;
}

.mygridfooter div {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 15px;
}
.myname {
  grid-area: name;
}

.studentcode {
  grid-area: code;
}

.copyright {
  grid-area: copyright;
}
@media (max-width: 768px) {
    .mygridfooter {
        width: 100%;
        gap: 15px;
        grid-template-columns: 1fr;
        justify-items: center;
        align-items: center;
        font-size: 10px;
    }
}

article {
  font-size: 24px;
  border: 5px solid blue;
  padding: 10px;
  background-color: rgb(239, 241, 69);
  width: 80%;
  margin : 0 auto;
}



h1 {
  text-align: center;
  padding: 20px;
}

h1:hover {
  color: rgb(214, 61, 61);
}
.sh {
  padding: 40px;
  font-size: 40px;
  text-align: center;
}

.flexgallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 50px 0;
  justify-content: center;
}

.fancyimg1 {
  width: 45%;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.fancyimg1:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

.big {
  width: 100%;
}

.fancyimg2 {
  width: 100%;
  max-width: 900px;
  height: 400px;
  border-radius: 12px;
  border: 5px solid #f0f0f0;
  margin: 0 auto ;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.fancyimg2:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}
.caption {
  width: 30%;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 12px 30px;
  text-align: center;
  border: 5px solid black;
  margin: 0 auto;
}
.mioww {
  margin: 20px;
}