/* styles.css */

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#bg-jen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 60%;
}

#jenpeg {
    animation: animate-jen 5s infinite linear;
    height: 500px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes animate-jen {
    from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(359deg);
      }
}