* {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  height: 100%;
  width: 100%;
  justify-items: center;
  background-color: #0c1b27;
  position: relative;
  overflow-x: hidden;
}
#main {
  width: 100%;
  background-color: #f5f5f5;
  padding: 100px 200px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: top left;
  transform: rotate(00deg);
  z-index: 1;
  transition: transform 1s ease;
}
.menu{
    height: 200px;
    width: 200px;
    background-color: orangered;
    position: relative;
    border-radius: 50%;
    position: absolute;
    left: -100px;
    top: -100px;
    color: #fff;
    font-weight: bolder;
    z-index: 2;
    transition: rotate 1s ease;
}
.menu .m1{
    right: 40px;
}
.menu .m2{
    left: 40px;
}
.m1, .m2{
    bottom: 40px;
    position: absolute;
    font-size: 1.5em;
    cursor: pointer;
}
img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}
.cont{
    display: grid;
    gap: 20px ;
}
.cont h1{
    position: relative;
    margin-bottom: 10px;
}
.cont h1::after{
    content: "A.I.";
    font-size: 0.5em;
    position: absolute;
    font-family:Calibri, 'Trebuchet MS', sans-serif;
    font-style: italic;
    font-weight: 100;
    left: 0;
    bottom: -15px;
}
.cont p{
    line-height: 1.5em;
}
.nav{
    position: fixed;
    bottom: 50px;
    left: 40px;
}
.i{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px 0px;
    color: #ffffff;
    animation-delay: 0s;
}
.i h2{
    font-weight: 100;
    font-size: 1.2em;
    text-transform: uppercase;
}
.i i{
    font-size: 1.4em;
    color: rgb(255, 95, 37);
}
.i2{
    margin-left: 20px;
}
.i3{
    margin-left: 40px;
}

@keyframes slide{
    from{
        transform: translateX(-300px);
    }
    to{
        transform: translateX(0px);
    }
}
@keyframes slideUndo{
    from{
        transform: translateX(0px);
    }
    to{
        transform: translateX(-200px);
    }
}