@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: transparent;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

html, body {
  margin: 0;
  padding: 0;
  overflow: hidden; /* or overflow-y: hidden */
  height: 100%;
}

.embed-container {
    background: transparent;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

input {
    padding: 10px;
    margin: 10px 0;
    width: 80%; /*last change */
    border-radius: 8px;
    border: 1px solid #ccc;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Inter', sans-serif;
}

input::placeholder {
    color: #aaa;
}

button {
    padding: 10px 20px;
    margin-top: 10px;
    background: white;
    color: black;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

#statusScreen, #scoreScreen {
    display: none;
}

#seoScore {
    font-size: 48px;
    font-weight: 600;
}

@media (max-width: 768px) {
  body {
    overflow: hidden;
  }
}