
@import url('https://fonts.googleapis.com/css2?family=Jersey+10&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between; /* pushes image left and nav right */
  background-color: #8f8f8f;
  padding: 0 20px;
  border-bottom: 4px solid rgb(105, 105, 105);
  box-shadow: 4px 4px 0px rgb(105, 105, 105);
}

#sig {
  padding: 5px;
  width: 150px;
}

ul {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
}

ul li {
  border: 1px solid #000000; 
  padding: 20px;
  margin-left: 8px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: #c9c9c9; 
}

ul li a {
  display: block;
  color: #3a3939;
  padding: 14px 16px;
  text-decoration: none;
}

ul li a:hover {
  background-color: #ffffff;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.right {
  display: flex;
  justify-content: right;
  align-items:right;
}

h1{
font-family: 'Jersey 10';
font-size: 100px;
}

.fade-eye {
  width: 300px; /* adjust if needed */
  animation: fadeInOut 4s infinite;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.boxi {
  border: 5px solid #c9c9c9;
  border-radius: 4px;
  width: 500px;
  overflow: hidden;
}
.boxi img {
  width: 100%;
  display: block;
}


.caption {
  text-align: center;
  padding: 10px;
  background-color: #f2f2f2;
}

.caption a {
  text-decoration: none;
  color: black;
  font-family: 'Roboto';
  font-size: 45px;
}

.caption a:hover {
  text-decoration: underline;
}

.textbox {
  border: 5px solid #c9c9c9;
  border-radius: 4px;
  padding: 20px;
  background-color: #f9f9f9;
  width:600px; 
  height: 500px;
  color: #000000;
  font-family: 'Roboto';
  font-size: 50px;
}



.build1{
  width:700px; 
  height: 700px;
}

.py{
  width:700px; 
  height: 700px;
  justify-content: right;
  align-items:right;
}

.footer {
  height:100px ;
  width:auto;
  background-color: #c9c9c9;
  color: white;
  font-family: 'Jersey 10';
  font-size: 50px;
  text-align: center;
  border-bottom: 4px solid rgb(105, 105, 105);
  box-shadow: 4px 4px 0px rgb(105, 105, 105);
}