/* body {
    background-color: #333333;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
  }
  
  .. h1 {
    font-size: 72px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    padding: 20px;
    background-color: #ffa07a;
    box-shadow: 0 0 10px #ffa07a;
  } 

  h1 {
    font-size: 72px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    padding: 20px;
    background-color: #ffa07a;
    box-shadow: 0 0 10px #ffa07a;
    animation: shake 0.5s linear infinite;
  }
  
  @keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
  }
  
  p {
    font-size: 24px;
    line-height: 1.5;
    margin: 20px;
  }
  
  a {
    color: #ffa07a;
    text-decoration: none;
  }
  
  a:hover {
    color: #ffffff;
  }
  
  button {
    background-color: #ffa07a;
    border: none;
    color: #333333;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    box-shadow: 0 0 10px #ffa07a;
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .image-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
  }
  
  .image-container img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffa07a;
  } */

  body {
    background-color: #ff00ff;
    color: #8e601f;
    font-family: 'Roboto', sans-serif;
    background-image: url(bg.jpg);
    background-size: cover;
    background-blend-mode: screen;
  }
  
  h1 {
    transform-origin: center;
    text-align: center;
    font-size: 72px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    padding: 20px;
    color: #ffffff;
    text-shadow: 0 0 10px #ffffff;
    background-color: transparent;
    /* object-fit: cover; */
    text-shadow: 1px 1px 1px rgb(74, 74, 74);
    /* transform: rotate(45deg);
    animation: shake 5.0s linear infinite; */
  }

  /* @keyframes shake {
    0% { transform: translate(1px, 1px) rotate(45deg); }
    10% { transform: translate(-1px, -2px) rotate(44deg); }
    20% { transform: translate(-3px, 0px) rotate(46deg); }
    30% { transform: translate(3px, 2px) rotate(45deg); }
    40% { transform: translate(1px, -1px) rotate(46deg); }
    50% { transform: translate(-1px, 2px) rotate(44deg); }
    60% { transform: translate(-3px, 1px) rotate(45deg); }
    70% { transform: translate(3px, 1px) rotate(44deg); }
    80% { transform: translate(-1px, -1px) rotate(46deg); }
    90% { transform: translate(1px, 2px) rotate(45deg); }
    100% { transform: translate(1px, -2px) rotate(44deg); }
  } */
  
  p {
    font-size: 24px;
    line-height: 1.5;
    margin: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  a {
    color: #ffffff;
    text-decoration: none;
  }
  
  a:hover {
    color: #ff00ff;
  }
  
  button {
    background-color: transparent;
    transform-origin: bottom left;
    border: 2px solid #8e601f;
    color: #8e601f;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    box-shadow: 0 0 10px #7a7a7a;
    transform: rotate(45deg);
  }