*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    max-width:100vw;
  }

body {
    background-color:#F7F7F7;
    display:flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    overflow-x: hidden;
    width: 100vw;
    min-height: 100vh;
}

img {
    margin-left: auto;
    opacity: 0;
    max-height: 80vh;
    max-width: 100vw;
    width:auto;
    animation: slideInLeft 0.5s ease-out forwards;
}

ul {
    opacity: 0;
    animation: slideInUp 0.5s ease-out forwards;
    animation-delay: 0.5s;
}

li {
    list-style: none;
    font-size: 2rem;
    display:flex;
    flex-direction: row;
}

@keyframes slideInLeft {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes slideInUp {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  

@media (max-width:800px) {
    body{
        flex-direction: column-reverse;
        justify-content: right;
    }

    img {
        width: 100vw;
        height: auto;
        object-fit: contain;
    }

ul {
    margin-top:1rem;
    width:100vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

li {
    font-size: 1.2rem;;
}

    
}