body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
    font-family: 'Balthazar', serif;
}

.title {
    color: antiquewhite;
    text-align: center;
    font-size: 3em;
    margin-bottom: 30px;
}

.input-container {
    text-align: center;
}

input {
    font-family: 'Balthazar', serif;
    background-color: black;
    color: antiquewhite;
    border: 1px solid #6b4b2a;
    padding: 10px;
    width: 250px;
}

button {
    font-family: 'Balthazar', serif;
    margin-left: 10px;
    padding: 10px 16px;
    background-color: black;
    color: antiquewhite;
    border: 1px solid #6b4b2a;
    cursor: pointer;
}

#result {
    margin-top: 15px;
    font-family: 'Balthazar', serif;
    font-size: 1.2em;
}

.testing-wrapper {
    min-height: 100vh;
    background-color: black;
    color: antiquewhite;
    font-family: 'Balthazar', serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
}

.testing-title {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.testing-subtitle {
    font-size: 1em;
    opacity: 0.85;
    margin-bottom: 60px;
    text-align: center;
    max-width: 600px;
}

.testing-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.testing-box {
    width: 300px;
    height: 300px;
    border: 2px solid antiquewhite;
}

.testing-right {
    max-width: 400px;
}

.testing-right p {
    margin-bottom: 20px;
}

.testing-button {
    font-family: 'Balthazar', serif;
    padding: 10px 30px;
    background-color: black;
    color: antiquewhite;
    border: 1px solid antiquewhite;
    cursor: pointer;
}

.testing-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border: 2px solid antiquewhite;
}
