body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0 0 1rem 0;
    text-align: center;
    background-color: rgb(248, 239, 199);
}
header {
    background: linear-gradient(270deg, #0fcabb, #00A86B);
    border-radius: 1rem;
    border: #333 2px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
header h1 {
    font-size: 1.5rem;
    color: #242124;
    text-align: center;
}
#first-p {
    font-size: 2rem;
    text-align: center;
}
.çizgi {
    border: red 1px dashed;
}
ol {
    font-size: 1.3rem;
    text-align: left;
}
#form {
    border: black 2px solid;
    background-color: rgb(3, 71, 66);
    padding: 0.3rem;
    border-radius: 5px;
}
input {
    box-sizing: border-box;
    width: 100%;
    margin: 0.1em 0;
    height: 5rem;
    border: #242124 2px solid;
    border-radius: 5px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background: linear-gradient(90deg, ivory);
}
button {
    background-color: #000000;
    color: #00A86B;
    padding: 10px 20px;
    border: 2px solid black;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.5s ease;
    width: 15%;
    margin: 1rem;
}


@media (max-width: 1100px) {
#first-p {
    font-size: 1.5rem;
    text-align: center;
}
ol {
    font-size: 1em;
    text-align: left;
}
button {
    background-color: #000000;
    color: #00A86B;
    padding: 10px 20px;
    border: 2px solid black;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.5s ease;
    width: 40%;
}
}