body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background: url("../images/background1.jpg") no-repeat center center fixed;
    background-size: cover;
    animation: moveBackground 15s linear infinite;
    margin-left: 5%;
    margin-right: 5%;
  }
  
  /* @keyframes moveBackground {
    0% {
        background-position: bottom top;
    }
    50% {
        background-position: top center;
    }
    100% {
        background-position: bottom center;
    }
  } */
  
h1{
    color: azure;
    text-align: left;
}


.logout {
    float: right;
}

.content {
    text-align: center;
    padding: 50px;
}

.media-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
}

.working-image {
    width: 300px;
    height: 300px;
    border: 2px solid #ddd;
    border-radius: 10px;
    margin-right: 20px;
}

.working-video {
    width: 400px;
    height: 500px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background-color: rgb(9, 9, 9);
}

#image1 {
    width: 200px;
    height: 300px;
}

#image2 {
    width: 400px;
    height: 300px;
}
button {
    background-color: #4CAF50;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 200px;
    position: absolute;
    left: 50%;
    transform: translateX(100%);
    transform: translateY(170%);
  
    bottom: 45px;
    left : 43%;
  }
  
  
  button:hover {
    background-color: #45a049;
  }
  
  button:focus {
    outline: none;
    background-color: #3e8e41;
  }
  