Qwen ai 2.5-Max 14-2-2568 by Vorapat & Orachorn

 elegant new bedroom


<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <title>Elegant New Bedroom</title>

  <style>

    body {

      margin: 0;

      font-family: 'Arial', sans-serif;

      background-color: #f4f4f9;

      color: #333;

      display: flex;

      justify-content: center;

      align-items: center;

      height: 100vh;

      overflow: hidden;

    }

    .bedroom {

      position: relative;

      width: 80%;

      max-width: 600px;

      height: 400px;

      background: linear-gradient(135deg, #ffffff 0%, #e6e6fa 100%);

      border-radius: 15px;

      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

      overflow: hidden;

    }

    .wall {

      position: absolute;

      top: 0;

      left: 0;

      width: 100%;

      height: 100%;

      background-image: url('https://via.placeholder.com/600x400/e0e0eb/ffffff?text=Elegant+Wall+Design');

      background-size: cover;

      background-position: center;

      opacity: 0.2;

    }

    .furniture {

      position: absolute;

      bottom: 20px;

      left: 50%;

      transform: translateX(-50%);

      width: 80%;

      height: 150px;

      background: #fff;

      border-radius: 10px;

      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

    }

    .lamp {

      position: absolute;

      top: 20px;

      right: 20px;

      width: 50px;

      height: 50px;

      background: #ffeb3b;

      border-radius: 50%;

      box-shadow: 0 0 20px rgba(255, 235, 59, 0.7);

    }

    .lamp::after {

      content: '';

      position: absolute;

      bottom: -20px;

      left: 50%;

      transform: translateX(-50%);

      width: 5px;

      height: 40px;

      background: #333;

      border-radius: 5px;

    }

    .decor {

      position: absolute;

      top: 50%;

      left: 20px;

      transform: translateY(-50%);

      width: 100px;

      height: 100px;

      background: url('https://via.placeholder.com/100x100/ffffff/c0c0c0?text=Decor') no-repeat center center;

      background-size: cover;

      border-radius: 10px;

      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);

    }

  </style>

</head>

<body>

  <div class="bedroom">

    <div class="wall"></div>

    <div class="furniture"></div>

    <div class="lamp"></div>

    <div class="decor"></div>

  </div>

</body>

</html>



elegant new bedroom


14-2-2568 by Vorapat & Orachorn

Comments