@charset "utf-8";

/* すべての要素に適用 */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
  margin: 0;
  background: #ebeaea;
  font-family: monospace;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px;
}

/* iPhone */
.iphone {
  width: 320px;
  height: 650px;
  background: #000;
  border-radius: 40px;
  padding: 14px;
  position: relative;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 28px;
  background: #000;
  border-radius: 0 0 16px 16px;
}

.screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 26px;
  padding: 30px 24px 24px 24px;
  overflow: auto;
}

/* Editor */
.editor {
  width: 90%;
  max-width: 500px;
  position: relative;
}

.editor pre {
  background: #1e1e1e;
  color: #aaa;
  padding: 16px;
  border-radius: 12px;
  margin: 0;
  font-size: 14px;
}

.editor textarea {
  position: absolute;
  inset: 0;
  background: transparent;
  color: #fff;
  border: none;
  resize: none;
  padding: 16px;
  font-size: 14px;
  outline: none;
}
