* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
}

/* FULLSCREEN */
.fullscreen {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* НОУТБУК */
.laptop {
  position: relative;
  width: 100%;
  max-width: 1200px;
}

.laptop > img {
  width: 100%;
  display: block;
}

/* ЭКРАН */
.screen {
  position: absolute;
  top: 14%;
  left: 14%;
  width: 72%;
  height: 72%;
  overflow-y: overlay;
  border-radius: 8px;

  /* ВОТ ТУТ ТВОЯ КАРТИНКА */
  background: url("ui-bg.png") center/cover no-repeat;
}

/* затемнение */
.screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(255 255 255 / 70%); /* затемнили под светлый текст */
}

/* КОНТЕНТ */
.content {
  position: relative;
  z-index: 2;
  padding: 40px;
  color: #000000;
}

/* ТЕКСТ */
h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.sub {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 15px;
  font-weight: bold;
}

h2 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 24px;
}
.list {
  margin-top: 10px;
  padding-left: 18px;
}

.list li {
  margin-bottom: 6px;
  font-size: 18px;
  opacity: 0.9;
}
p {
  font-size: 18px;
  margin-bottom: 8px;
}

/* КНОПКА */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  border: 1px solid #000000;
  color: #000000;
  text-decoration: none;
}

.btn:hover {
  background: #000000;
  color: #000;
}

/* ПЛАВНЫЙ СКРОЛЛ */
.screen {
  /* scroll-behavior: smooth; */
}