@import url(https://fonts.googleapis.com/css?family=Roboto:700);
@import url(https://fonts.googleapis.com/css?family=Barriecito:400);
body{
  background-color: rgb(0,0,0);
  text-align: center;
  color: #FFFFFF;
}
h1{
  font-family: "Barriecito", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 115px;
  color: #FFFFFF;
}
h2{
    font-size: 40px;
    font-family: 'trebuchet MS', sans-serif;
}

.AAA{
    font-size: 24px;
    font-family: 'trebuchet MS', sans-serif;
    width: 600px;
    height: auto;
    padding: 10px;
    border: 5px solid #ffffff;
    border-radius: 10px;
    background-color: #ffffff;
    margin: auto;
    text-align: center;
    font-family: 'trebuchet ms', sans-serif;
    font-size: 30px;
    margin-top: 42px;
    color: #000000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

p{
  font-size: 24px;
  font-family: 'trebuchet MS', sans-serif;
  width: 200px;
  height: auto;
  padding: 10px;
  border: 5px solid #ffffff;
  border-radius: 10px;
  background-color: #ffffff;
  margin: auto;
  text-align: center;
  font-family: 'trebuchet ms', sans-serif;
  font-size: 30px;
  margin-top: 42px;
  color: #000000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

img{
    width: 300px;
    height: auto;
}
.topnav {
  text-align: center;
  font-family: 'trebuchet MS', sans-serif;
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 23px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #919CA0;
  color: white;
}

.about-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.about-flex img {
  max-width: 400px;
  height: auto;
  border-radius: 10px;
}

.about-flex h2 {
    margin: 0 16px;
    font-size: 2em;
}

.about-flex p {
    margin-top: 28;
    margin: 0 16px;
    font-size: 1.2em;
}

.AA{
    width: 300;
    height: auto;
    padding: 10px;
    border: 5px solid #ffffff;
    border-radius: 10px;
    background-color: #ffffff;
    margin: auto;
    text-align: center;
    font-family: 'trebuchet ms', sans-serif;
    font-size: 30px;
    color: #78DFF4;
    margin-top: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.holographic-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #000;
}

.holographic-card {
  width: 300px;
  height: 300px;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.5s ease;
}

.holographic-card h2 {
  color: #0ff;
  font-size: 2rem;
  position: relative;
  z-index: 2;
}

.holographic-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg, 
    transparent, 
    transparent 30%, 
    rgba(0,255,255,0.3)
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.holographic-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,255,255,0.5);
}

.holographic-card:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}
