body{
    background-image: linear-gradient(270deg, rgba(9,9,121,0.5) 1%, rgba(0,212,255,1) 100%);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5vh 5vw;
}
header h1{
    font-size: 2.5em;
    color: white;
}
.kenImg{
    position: relative;
    width: 20vw;
    height: 20vw;
}
.kenImg img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.6s ease-in-out;
    object-fit: cover;
}
.kenImg :nth-child(1){
    opacity: 1;
}
.kenImg :nth-child(2){
    opacity: 0;
}
.kenImg:hover :nth-child(1){
    opacity: 0;
  }
  
.kenImg:hover :nth-child(2){
    opacity: 1;
  }

.sethImg{
    position: relative;
    width: 20vw;
    height: 20vw;
}
.sethImg img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.6s ease-in-out;
    object-fit: cover;
}
.sethImg :nth-child(1){
    opacity: 1;
}
.sethImg :nth-child(2){
    opacity: 0;
}
.sethImg:hover :nth-child(1){
    opacity: 0;
  }
  
.sethImg:hover :nth-child(2){
    opacity: 1;
  }

  
.info{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5vh;

}
.descriptions{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    margin-top: 5vh;
    max-width: 120ch;
}
.descriptions p{
    font-size: 1.2em;
    color: white;
    margin: 0;

}
nav{
    width: 40vw;
    position: absolute;
    opacity: 0.1;
    z-index: -1;
    font-size: 30px;
}