* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
        /* border: red solid 1px;     */
  
    
    /* font-family: 'Bebas Neue', sans-serif; */
  }

  html {
    overflow-x: initial;
    background-color: #000;
    scroll-behavior: smooth;
    overscroll-behavior: none; 
    scroll-snap-type: y proximity;
  
  
  }

  body {
  opacity: 0;
  transition: opacity 0.2s ease-in; /* Fast fade-in, adjust time as needed */
}
  body.fade-in {
  opacity: 1;
}
.modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        justify-content: space-evenly;
        align-items: center;
        z-index: 9999;
    }
.modal-content {
        display:flex;
        flex-direction: column;
        height: 250px;
        background: rgb(0, 0, 0);
        padding: 2rem;
        border-radius: 8px;
        position: relative;
        max-width: 500px;
        width: 90%;
        color: white;
        border: red 1px solid;
        font-family: 'Bebas Neue', sans-serif;
    }

    .formm{
       display:flex;
        flex-direction: column;
        justify-content: space-evenly;
        height: 100%;
    }
    
.close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
        font-size: 1.5rem;
    }
    
.hidden {
        display: none !important;
    }

    #inpu1{
 font-family: 'Bebas Neue', sans-serif;
 font-size: 1rem;
 height: fit-content;
    }

    #inpu2{
  font-family: 'Bebas Neue', sans-serif;
 font-size: 1rem;
 height: fit-content;
    }

    #inpu3{
  font-family: 'Bebas Neue', sans-serif;
 font-size: 1rem;
 height: fit-content;
    }

    #submitt{
       font-family: 'Bebas Neue', sans-serif;
       font-size: 1rem;
        height: fit-content;
        background-color: #170020;
        color: white;
        border-radius: 5px ;
        border: none;
    }

    #submitt:hover{
      cursor: pointer;
    }

  /* NAV */
  .navbar {
    background: transparent;
    padding: 20px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
   
    z-index: 100;
  
  }
  
  .navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    min-width: 85%;
    border-radius: 10px;
    background: #070014;
    z-index: 1000;
    min-height: 70px;
    box-shadow: 0 0 10px 5px rgba(221, 219, 219, 0.37);
   
  }
  
  .navbar__toggle {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 19px;
  
    z-index: 1001;
  }
  
  .bar {
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
  }
  
  
  .navbar__menu {
    display: none;
    flex-direction: column; 
    position: fixed;
    margin-top: 140px ;
    width: 85%;
    height: 300px;
    background-color: #000000;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    list-style-type: none;
  }
  
  .navbar__menu.active {
    display: flex;
  }
  
  .navbar__item {
    margin: 15px 0;
    list-style-type: none;
    width: 100%;
  
    
  }
  
  .navbar__links {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    position: relative;
    transition: color 0.3s;
    font-size: 2rem;
    z-index: 590;
    
  }
  
  .navbar__links::after {
    content: ''; 
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    left: 50%;
    background: #0842ff;
    transition: width 0.4s ease, left 0.3s ease;
  }
  
  .navbar__links:hover::after {
    width: 100%;
    left: 0;
    background: #ff7b00;
  }
  
  
  .navbar__btn {
    margin-left: auto;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  
  
  .navbar__btn .button {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    background-image: linear-gradient(to right, #0c0c0b, #530033), linear-gradient(to right, #3d3d3d, #3d3d3d);
    background-size: 200% 100%, 200% 100%;
    background-position: 0% 0%, 100% 0%;
    transition: background-position 0.5s ease;
    color: #ffffff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
   
  }
  
  .navbar__btn .button:hover {
    background-position: 100% 0%, 0% 0%;
  }

  .navbar__toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .navbar__toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .navbar__toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .navbar__logo {
    color: white;
    margin-left: auto;
    font-size: 2rem;
    flex: 0 0 auto; 
    font-family:  "Cedarville Cursive", cursive;
    font-weight: 500;
    position: relative; 
    display: inline-block;
    padding-bottom: 5px; 
  }
  
  .navbar__logo::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #0145ff, #ff66c4);
    border-radius: 2px;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
  
  .navbar__logo:hover::after {
    transform: scaleX(1);
    height: 2px;
  }
  

.logo-gradient {
    background: linear-gradient(90deg, #006eff, #5c003a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  @media (max-width:400px) {
    .navbar__btn .button{
      display: none;
    }

    .navbar__toggle{
      width: 25px;
    }
  }

  /* END NAV */

  /* inside section1 */
  .section1 {
   
    width: 100%;
    height: 300vh;
    margin: 0;
    padding: 0;
    z-index: 5;
    display: flex;
    background: rgb(58, 58, 58);
     backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    scroll-margin-top: 100px;
    scroll-snap-align: start
    
  }
  .stack-area {
    width: 100%;
    min-height: 100%;
    height: max-content;
    position: relative;
    
    display: flex;
  
    z-index: 5;

  }


  .left {
    height:auto;
    max-height: 100vh;
    flex-basis: 50%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 3;
    
  }
  .right {
    height: 100vh;
   
    flex-basis: 50%;
    top: 0;
    left: 0;
    position: sticky;
    top:0;
    display: flex;
    justify-content: top; /* center .col horizontally */
    align-items: top; 
   
    z-index: 3;
   
  }

   .col{
    width: 100%;
    top:0;
    max-height: 200vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  } 
  
  
  /*Styling for the left elements content starts here...*/
  .left {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
    align-items: center;
    flex-direction: column;
    
  }


  .titlex {
    margin-top: 100px;
    display: flex;
     width: 30vw;
   max-height: fit-content;
   
    flex-direction: column;
    justify-content: flex-start; 
    border-radius: 10px;
    background-color: #070014;
    align-items: center;
    box-shadow: 0 0 10px 5px rgba(221, 219, 219, 0.199);
    padding: 30px 0; 
  }
    .titlex:hover{
      border: #640000 2px solid ;
      transition: 0.1s ease-in-out;
    }
  


  .titleee {
    width: 70%;
    font-size: 1.9rem;
    margin-top: 0;
    font-weight: 300;
    line-height:5vh;
   
    color: #ffffff;
    font-family: 'Bebas Neue', sans-serif;
  
  }
  .sub-titlee {
    width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-top: 30px;
    color: rgba(0, 0, 0, 0);
    font-family: 'Courier New', Courier, monospace;
    margin-bottom: 20px;
  }
  .links{
    size:contain;
    background: rgb(0, 0, 0);
    outline: none;
    margin-left: 10px ;
    padding: 10px 10px;
    border-radius: 5px;
    display: inline;
    
  }

  .links:hover{
    cursor: pointer;
    box-shadow: 0 0 10px 5px rgba(221, 219, 219, 0.199);
    transition: ease-in 0.2s;
   
    
  }

    .linkedin{
      width: 2vw;
      min-width: 20px;
      outline: none;
      
    }

   .git{
    width: 1.9vw;
    background: transparent;
    z-index: 50;
    min-width: 20px;
  
  }

  

  /*Styling for the left elements content ends here...*/
  
  .card {
    width: 35%;
    min-width: 250px;
    min-height: 25%;
    max-height: 250%;
    border-radius: 25px;
    margin-bottom: 10px;
    position: absolute;
    top: calc(50% - 175px);
    left: calc(50% - 175px);
    transition: all 2s ease-in-out;
    background-color: #170020;
    align-items: center;
    top:40%;
    left:40%;
   border: #00070c 1px solid ;
   
    
    
  }

  .card:hover{
    border: #640000 1px solid ;
    transition: 0.9s ease-in-out;
   
  }

  .meimg{
    width: 250px;
    
    max-height: 40vh;
    border-radius: 20px;
    margin-top: 10%;
   
  }
  
  
  /*Styling for the card content starts here...*/
  .card {
    box-sizing: border-box;
    padding: 35px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
  
  }
  .subb {
    font-family: 'Bebas Neue', sans-serif;
    color: rgb(255, 255, 255);
  font-size: 1.2rem ;

    
  }
  .contentt {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    
    color: white;
  }

  .Engineer{
    width: 95%;
    height: 95%;
   
  }

  .athlete{
    width: 85%;
    height: 85%;
  }

  .teamwork{
    width: 105%;
    height: 105%;
  }

  .robotvec{
    width: 85%;
    height: 85%;
  }

  .software{
    width: 85%;
    height: 85%;
  }
  .electronics{
    width: 85%;
    height: 85%;
  }
  /*Styling for the card content ends here...*/
  
  .away {
    transform-origin: bottom left;
  }

  @media (max-width:550px) {
    .meimg{
      width: 75% !important;
      height: 70% !important;
    }
    
  }
  
  @media (max-width: 1000px) {
    .navbar__logo{
      font-size: 1.7rem;
    }
    .navbar__btn .button{
      font-size: 1.0rem;
      padding-inline: 5px;
    }
  
    
    .section1{
      height: auto  ;   /* Allow JS to set height */
      min-height: 0 ; 
     
    }
    .stack-area {
    flex-direction: column; /* Stack the left and right sections vertically */
    align-items: center; 
    display: flex;/* Center content horizontally */
  
    /* overflow-x: hidden; */

    }

    .titlex{
      margin-top: -50px;
      width: 90vw;      /* Fixed width */
      height: 90vh;
      justify-content: center;
   
    }
    
    .left {
    flex-basis: 100%; /* Take full width */
    height: auto !important; 
    max-height: fit-content !important;/* Adjust height to fit content */
    position: relative; /* Remove sticky positioning */
    padding: 20px; /* Add padding for spacing */
    text-align: center; /* Center text content */
    display: flex;
    justify-content: flex-start;
    margin-top: 200px;
    }

    .col{
      position: none;
      flex-direction: column;
      top:0;
      justify-content: flex-start;
      height: fit-content;
      
    }

    .meimg{
      height: 50vh;
      width: 350px;
    }

    .Engineer{
      width: 75%;
    }
    
    .titleee {
    font-size: 30px; /* Adjust font size for smaller screens */
    line-height: 52px;
    font-weight: 200;
    width: auto; /* Allow width to adjust dynamically */
    justify-content: flex-start;
    }
    
    .sub-titlee {
    font-size: 14px;
    width: auto; /* Allow width to adjust dynamically */
    margin-top: 20px;
    }
    
    .sub-titlee button {
    font-size: 14px;
    padding: 10px 20px; /* Adjust button size */
    }
    
    .right {
    flex-basis: 100%; /* Take full width */
    height: fit-content !important; /* Adjust height to fit content */
    position: relative; /* Remove sticky positioning */
    display: flex;
    justify-content: center;
    align-items: top;
    flex-wrap: wrap; /* Allow cards to wrap if necessary */
    padding: 20px; 
    margin-top: 100px;/* Add padding for spacing */
    }

    
    .card {
    position: relative; /* Remove absolute positioning for stacking */
    margin-bottom: 20px; /* Add spacing between cards */
    left: auto;
    top: auto;
    transform: none; /* Reset transformations for responsiveness */
    width: calc(100% - 40px); /* Ensure cards fit within the container with padding */
    max-width: 350px;
    min-height: fit-content;
   
    
  
    }
    .card {
      opacity: 0;
      transform: translateY(20px);
      transition:  2s cubic-bezier(0.165, 0.84, 0.44, 1);
      pointer-events: none;
    }

    .card:hover{
      border: #640000 1px solid ;
      transition: 0.2s ease-in-out;
     
    }
    
    .card.revealed {
      opacity: 1;
      transform: translateY(0);
      pointer-events: all;
    }
    }

    .sub{
      font-size: 2rem;
    }
    .content{
      font-size: 2rem;
    }


/* SECTION 1 END */

/* SECTION 2 PORT */
.section2Port{
height: fit-content;
background-color: #292929;
display: flex;
flex-direction: column;
align-items: center;
z-index: 5;
justify-content: flex-start;
z-index: 4;
padding: 20px;

}

.Titleport{
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  margin-bottom: 30px;
  position:relative;
  display: inline-block;
  padding-bottom: 5px; 
  text-align: center;

}

.Titleport::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0145ff, #ff66c4);
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.Titleport:hover::after {
  transform: scaleX(1);
  height: 2px;
}


.projectContainer{
  background-color: #3f07a8;
  height: fit-content;
  width: 90vw;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 20px;
  justify-content: space-evenly;
  
  box-shadow: 0 0 10px 5px rgba(221, 219, 219, 0.37);

}

.WhouseRobot{

background-color: #070014;  
height: 300px;
width: 600px;
margin-left: 10px;
z-index: 5;
border-radius: 15px;
display:flex;
align-items: flex-start;
flex-direction: column;
padding: 15px;
margin-bottom: 50px;
}

.WhouseRobot, .WhouseRobot:visited {
  text-decoration: none;
  color: inherit; 
}
.roww{
  width:80%;
  height:100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin: none;

 

}

.WhouseRobot:hover{
  border: #640000 2px solid ;
  cursor: pointer;

}


.SprintTT{
  background-color: #070014;  
  height: 300px;
  width: 600px;
  margin-left: 10px;
  z-index: 5;
  border-radius: 15px;
  display:flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 15px;
  margin-bottom: 50px;
  
}

.SprintTT, .SprintTT:visited {
  text-decoration: none;
  color: inherit; 
}


.SprintTT:hover{
 border: #640000 2px solid ;
  cursor: pointer;
}

.AIProdpredict{
background-color: #070014;  
  height: 300px;
  width: 600px;
  margin-left: 10px;
  z-index: 5;
  border-radius: 15px;
  display:flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 15px;
  margin-bottom: 50px;

}

.AIProdpredict:hover{
   border: #640000 2px solid ;
  cursor: pointer;
}

.AIProdpredict, .AIProdpredict:visited {
  text-decoration: none;
  color: inherit; 
}

.Reactsitee{
background-color: #070014;  
  height: 300px;
  width: 600px;
  margin-left: 10px;
  z-index: 5;
  border-radius: 15px;
  display:flex;
   align-items: flex-start; 
  flex-direction: column;
  padding: 15px;
  margin-bottom: 50px;
 
}

.Reactsitee:hover{
   border: #640000 2px solid ;
   cursor: pointer;
}

.Reactsitee, .Reactsitee:visited {
  text-decoration: none;
  color: inherit; 
}

.Tbot{
  width: 40%;
  height: 90%;
  margin-top: 10px;
  border-radius: 10px;

}

.sp{
  width: 50%;
  height: 90%;
  margin-top: 10px;
  border-radius: 10px;
 
}
.hi{
  color: white;
  font-size: 2rem;
  font-family:  'Bebas Neue', sans-serif;


}

.langContain{
  display:flex;
  flex-direction: column;
 justify-content: space-evenly;
 align-items: center;
  width: fit-content;
  height: 200px;
  margin-left: 15px;
}

.lang{
  width: 100px;
  color: white;
  background-color: purple;
  padding: 6px;
  border-radius: 10px;
  text-align: center;
  font-family: monospace;
  font-size: 0.95rem;
  font-weight: 800;
  font-style: italic;
}

.aiclip{
  width: 220px;
  height: 70%;
  margin-top: 10px;
  border-radius: 10px;
  margin-right: 5px;

}

.appvect{
   width: 150px;
  height: 70%;
  margin-top: 10px;
  border-radius: 10px;
  margin-right: 5px;


}
@media (max-width: 750px) {
  .Tbot{
    width: 140px;
    height: 170px;
  }

  .aiclip{
    width: 200px;
  }

  .appvect{
    width: 200px;
    height: 200px;

  }
  
}

@media (max-width: 455px) {
  .WhouseRobot{
    width: 95%;
    flex-direction: row;
    flex-wrap: wrap;
    height: fit-content;
    text-align: center;
     justify-content: center;
    align-items: center !important;
  }

  .SprintTT{
    width: 95%;
    flex-direction: row;
    flex-wrap: wrap;
    height: fit-content;
     text-align: center;
      justify-content: center;
  }

  .AIProdpredict{
   width: 95%;
    flex-direction: row;
    flex-wrap: wrap;
     text-align: center;
    height: fit-content;
   justify-content: center;
  }

  .Reactsitee{
    width: 95%;
    flex-direction: row;
    flex-wrap: wrap;
    height: fit-content;
    text-align: center;
   justify-content: center;
  }

  .hi{
    font-size: 1.5rem;
  }

  .aiclip{
    width: 120px;
    height: 170px;
  }

  .appvect{
    width: 145px;
  }

  .lang{
    font-size: 0.8rem;
    width: 100px;
   
  }
  
  .langContain{
    margin-left: none !important;
    width: 40%;
  }

  .sp{
    height: 140px;
    width:170px;
    margin-right: none;
  }
  .roww{
    margin: none;
  }
}

@media (max-width:400px){
  .roww{
    flex-direction: column;
    align-items: center;
    margin-right: none !important;
   align-self: center ;
    justify-self: center !important;
 
    
  }

  .langContain{
    margin-right: 15px !important;
  }


}
/* section 2 end */

.section3{
height: fit-content;
background-color:  rgb(58, 58, 58);
display: flex;
flex-direction: column;
align-items: center;
z-index: 5;
justify-content: flex-start;
z-index: 4;
padding: 20px;

}

.custom-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  background: transparent; 
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  min-height: 100px;
  gap: 0; /* No gap, lines touch */
}

.grid-box {
  flex: 1 1 0;
  min-width: 150px;
  color: #fff;
  text-align: center;
  font-size: 1.4em;
  padding: 40px 0;
  border-left: 3px solid #fff;
  border-right: 3px solid #fff;
  border-top: none;
  border-bottom: none;
  background: transparent;
  box-sizing: border-box;
  transition: background 0.2s;
  font-family: 'Bebas Neue', sans-serif;
}


.grid-box.end {
  border-right: none;
}


.grid-box:first-child {
  border-left: none;
}


@media (max-width: 500px) {
  .custom-grid {
    flex-direction: column;
    max-width: 95vw;
  }
  .grid-box,
  .grid-box.end {
    border-left: 3px solid #fff;
    border-right: 3px solid #fff;
    border-top: none;
    border-bottom: none;
  }
  .grid-box:first-child {
    border-left: none;
  }
  .grid-box.end {
    border-right: none;
  }
}

.sprintInfo{
   height: fit-content;
  background-color: #292929;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  justify-content: flex-start;
  z-index: 4;
  padding: 30px;
   border-radius: 10px;
}

@media (max-width:1300px) {
  .sprintInfo{
    margin-top: 10px;
  }
}

.sprintimagee:hover{
 border: solid 4px white;
}

.sprintimagee{
  width:450px;
  height: 500px;
  border-radius: 10px;
}

@media (max-width:600px) {
  .sprintimagee{
    width: 300px;
    height: 325px;
  }
  
}

@media (max-width:440px) {
  .sprintimagee{
    width: 200px;
    height: 225px;
  }
  
}

.gridicont{
  display: flex;
  flex-direction: column;
  height: fit-content;
  width: fit-content;
  padding: 20px;
  background-color: #292929;
  border-radius: 10px;

}

#athtext{
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: white
}

.p010{
  font-size: 1.3rem;
  color: white;
  font-family: monospace;
}
/* footer */

.footer{
  height: 200px;
  width: 100%;
  background-color: #1b1b1b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#footertext{
  font-family: monospace;
  color:white;

}

.pic{
  color: orange;
   font-family: monospace;
}

/* SPRINT TIMING PAGE */

.sprinttimingsys{
  height: fit-content;
  background-color: #292929;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  justify-content: flex-start;
  z-index: 4;
  padding: 20px;
  

}

.Titleportt{
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  margin-bottom: 30px;
  position:relative;
  display: flex;
  padding-bottom: 5px; 
  margin-top: 100px;
 
}

.Titleportt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0145ff, #ff66c4);
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.Titleportt:hover::after {
  transform: scaleX(1);
  height: 2px;
}


.gallery{
  background-color: #3f07a8;
  height: fit-content;
  width: 90vw;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 20px;
  justify-content: space-evenly;
  align-items: center;
  box-shadow: 0 0 10px 5px rgba(221, 219, 219, 0.37);

}


.outside{
  width: 400px;
  height: 750px;
  border-radius: 10px;
   margin-top: 50px;
}

.outside:hover{
  border: solid 4px #ffffff ;
}

.startm2{
  width: 400px;
  height: 750px;
  border-radius: 10px;
   margin-top: 50px;
}

.startm2:hover{
    border: solid 4px #ffffff;

}

.finishm{
   width: 350px;
   height: 300px;
   margin-top: 50px;
   border-radius: 10px;
}

.finishm:hover{
   border: solid 4px #ffffff;
}

.startm{
  width:350px;
height: 410px;
  margin-top: 50px;
  border-radius: 10px;
}

.startm:hover{
     border: solid 4px #ffffff;
}

@media (max-width: 500px) {
  .outside{
    width: 90%;
    height:auto;
  }

  .startm{
    width: 90%;
    height:auto;
  }

  .finishm{
     width: 90%;
    height:auto;
  }

  .startm2{
     width: 90%;
    height:auto;
  }

}

.information{
  background-color: #3f07a8;
  width: 75vw;
  font-family: monospace;
  border-radius: 10px;
  color: white;
  height: fit-content;  /*subject to change */
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 50;
  font-size: 1.3rem;
  box-shadow: 0 0 10px 5px rgba(221, 219, 219, 0.37);
  padding: 10px ;
  line-height: 20px;
}

.sprintTitlee{
font-size: 2rem;
margin-bottom: 10px;
font-family: 'Bebas Neue', sans-serif;
align-self: center;
line-height: 30px;

}

.features{
  align-self: start;
  line-height: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
  
}

@media (max-width:500px) {
  .features{
    line-height: 35px;
  }
  .information{
    width: 85vw;
  }
}

.bullet{
  color: orange;
  font-size: 1.6rem;
}

.links2{
 align-self: center;
 height: fit-content;
 width: fit-content;
 background-color: #000;
 padding: 15px;
 border-radius: 10px;
  
}

.links2:hover{
  cursor: pointer;
   border: solid 1px #be0000;
  transition: ease-in 0.2s;
}

/* Robot styling */

.pidgraph{
  width:400px;
  height: 400px;
   border-radius: 10px;
}

.pidgraph:hover{
  border: solid 4px white;

}

.processedd{
   width:400px;
  height: 400px;
   border-radius: 10px;
}

.processedd:hover{
    border: solid 4px white;
}

.Turnposition{
     width:400px;
  height: 400px;
   border-radius: 10px;
}

.Turnposition:hover{
  border: solid 4px white;
}

.BOT{
     width:400px;
  height: 400px;
   border-radius: 10px;
}

.BOT:hover{
    border: solid 4px white;
}

@media (max-width:930px) {
 .BOT{
  margin-bottom: 20px;
 }

 .pidgraph{
  margin-bottom: 20px;
 }
 .processedd{
  margin-bottom: 20px;
 }
}

@media (max-width:500px) {
   .BOT{
 min-width:  250px;
  width: 250px;
  height:250px;
 }

 .pidgraph{
  min-width: 250px;
   width: 250px;
   height:250px;
 }
 .processedd{
   min-width: 250px;
    width: 250px;
  height:250px;
 }

 .Turnposition{
   width: 250px;
    height:250px;
    min-width: 250px;
 }
  
}

/* resume */
.resumesec{
    height: 100vh;
  background-color: #292929;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  justify-content: flex-start;
  z-index: 4;
  padding: 20px;
}

.resume{
  align-self: center;
  font-family: monospace;
}

.resume, .resume:visited {
  color: inherit;
  text-decoration: none;
  text-decoration: underline;
 }

 /* Thanks */
#suc1{
  background-color: rgb(0, 0, 0);
  display: flex;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
 .successs{
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 7rem;
  text-align: center;


 }

 .successs:hover{
  text-decoration: underline;
  transition: 0.3s ease-in-out ;

 }

.goHome{
  color: white;
  background-color: #170020;
 font-family: 'Bebas Neue', sans-serif;
 text-decoration: none;
 height: fit-content;
 width: auto;
 font-size: 2rem;
 border-radius: 10px;
 padding: 15px;
 border: white 1px solid;

}

.goHome:hover{
cursor: pointer;
border: red 1px dotted;
transition: 0.3s ease-in-out;

}

.goHome:visited{
  text-decoration: none;
}