@import url(Reset.css);
@import url(Reset.css);
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
#grad1 {
    background: 
    linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(20, 20, 20) 10%, rgb(40, 40, 40) 20%, rgb(70, 70, 70) 30%, rgb(90, 90, 90) 40%, rgb(110, 110, 110) 50%, rgb(140, 140, 140) 60%, rgb(160, 160, 160) 70%, rgb(180, 180, 180) 80%, rgb(200, 200, 200) 90%, rgb(0, 0, 0) 100%) 
    0 0 / 200% 100%;
    animation: a 4s linear infinite;
}


body{
  background-image: url(Image/the\ fog\ is\ coming.png);
  background-size: cover;
  background-repeat: no-repeat;

}
html{
    font-family: sora;
}
.start{
    border-radius: 15px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.end{
    border-radius: 15px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.footed footer{
  height: 35px;
  margin-left: auto;
  margin-right: auto;
  position:fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width:95%;
  border: 5px solid rgb(255, 255, 255,0.6);
  border-top-left-radius:15px ;
  border-top-right-radius:15px ;
  border-bottom: 0px;
  display: flex;
  align-items: center;
}
footer a{
  text-decoration: none;
  color: black;
  width:100%;
  margin: auto;
  text-align: center;
  font-size: 100%;
  transition: background-color 0.3s;
}
nav a{
    text-decoration: none;
    color: black;
    width:100%;
    background-color: rgb(255, 255, 255, 0.7);
    padding: 15px;
    margin: auto;
    text-align: center;
    font-size: 100%;
    transition: background-color 0.3s;
}

footer a{
  text-decoration: none;
  color: black;
  width:100%;
  margin: auto;
  text-align: center;
  font-size: 100%;
  transition: background-color 0.3s;
}
nav a :visited { 
    text-decoration: none;
    color: black;
}
nav a:hover{
    background-color: rgba(255, 255, 255, 0.4);
}
header{
    display: flex;
    flex-wrap: nowrap;
    
}
header img{
  display: flex;
  width: 20%;
  height: 20%;
  border-radius: 100%;
  transition: border-radius 0.5s;
}
header img:hover{
  border-radius: 0%;
  border-bottom-right-radius: 15px;
}
nav{
    display: flex;
    border: 5px black solid;
    margin-left: auto;
    border-bottom-left-radius: 10px ;
    border-top-right-radius: 0px ;
    margin-right: 0;
    justify-content: space-evenly;
    width: 70%;
    height: 45px;
    padding: 25px;
    background-color: wheat;
    background-color: rgba(0, 0, 0, 0.5);
}
@keyframes colorRotate {
    from {
      color: #2a2a2a;
    }
    10% {
      color: #4b4b4b;
    }
    50% {
      color: #9f9f9f;
    }
    75% {
      color: #b7b7b7;
    }
    100% {
      color: #ffffff;
    }
  }
  @keyframes a {
    to {
        background-position: -200% 0;
    }
}
/*Chat Gbt Stuff*/
.main {
  padding: 20px;
}

.content {
  background-color: rgb(255, 255, 255, 0.6);
  color: black;
  padding: 20px;
  border-radius: 10px;
  line-height: 1.6;
  overflow: hidden;
  position: relative;
  width: 60%;
  margin: auto;
  border: rgb(255, 255, 255, 0.8) solid 5px;
}

.image-box {
  float: left; /* Ensures the image floats to the left */
  margin-right: 20px; /* Creates space between image and text */
  margin-bottom: 15px;
  background-color: #ffffff; /* White space around the image */
  padding: 10px; /* Adds a white buffer around the image */
  border-radius: 10px; /* Optional rounded corners */
  overflow: hidden; /* Ensures the image stays within bounds */
}

.image-box img {
  display: block;
  width: 250px; /* Larger image size */
  height: auto; /* Maintain aspect ratio */
}