@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Andika&family=Anton&family=Kavoon&family=Lilita+One&display=swap');
body {
background-color: black;
color: whitesmoke;
}
img {
    height: 250px;
    width: 250px;
    padding: 30px 15%;
}
.cont {
    display: flex;
    justify-content: inherit;
    margin-top: 100px;
}

.title h1 {
    margin-top: 85px;
    font-size: 7vh;
}
h1 {
    position: relative;
    font-family: sans-serif;
    text-transform: uppercase;
    font-size: 2em;
    letter-spacing: 4px;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(0,191,255,1) 33%, rgba(30,144,255,1) 66%, rgba(65,105,225,1) 100%);
    background-repeat: no-repeat;
    background-size: 80%;
    animation: animate 2.5s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(245, 245, 245, 0.39);
  }
  
  @keyframes animate {
    0% {
      background-position: -500%;
    }
    100% {
      background-position: 500%;
    }
  }
.title p {
font-size: 2vh;
}
.contaire {
    display: flex;
    padding:30px;
}
.question {
    height: 300px;
    width: 600px;
    padding: 30px 5%;
}
.question h2 {
    font-size: 5vh;
    text-align: center;
    color: #87CEEB;
    font-family: 'Lilita One', cursive;
} 
.question p {
    font-size: 2.8vh;
    font-family: 'Quicksand', sans-serif;
}
.image1 img {
    height: 800px;
    width: 800px;
    position: fixed;
}
hr {
    margin-top: 40px;
    border: 1px solid rgb(9, 238, 238);
    width: 100%;
}
.contact1 {
    height: 120px;
    width: 600px;
    margin-top: 40px;
}
.contact1 a {
    font-size: 4.5vh;
    text-decoration: none;
    padding: 20px;
    color:#696969;
}
.contact1 a:hover {
    font-size: 5.5vh;
    color: aqua;
    transition: color 0.7s;
}
.button {
    height: 50px;
    display: flex;
    text-decoration: none;
}
button {
    font-size: 3vh;
    background-color: inherit;
    color: #87CEEB;
    cursor: pointer;
    text-decoration: none;

}
button:hover {
    background-color:#87CEEB;
    color:black;
    border-radius: 2rem;
    text-decoration: none;
}