body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 300px;
    background-size: cover;
    background-position: center;
    padding: 20px;
    position: relative;
}

.controls {
    margin-top: 20px;
}

.text-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #ddd;
    padding: 50px;
    cursor: move;
    left: 0; 
    top: 0; 
    transform-origin: top left; 
}

a {
  color: lightgreen;
  text-decoration: none;
  transition: 0.5s;
}

a:hover {
  color: green;
}