body {
    display: flex;
    align-items: center;
    justify-content: center;
}

main {
    background-color: #d9d9d9;
    max-width: 800px;
    min-width: 360px;
    font-family: Helvetica;
}

header {
    text-align: center;
    background-color: #970BF4;
}

picture .banner {
    display: flex;
    width: 100%;
}

.first-div {
    display: flex;
    max-width: 500px;
}

h1 {
    text-transform: uppercase;
    color: #970BF4;
    text-wrap: wrap;
    font-weight: 600;
    text-align: center;
    font-size: 30px;

}

p {
    padding: 10px;
    text-wrap: wrap;
    font-size: 16px;
    text-align: center;
    margin: 10px;
}

h2 {
    color: #d9d9d9;
    font-size: 24px;
    font-weight: 600;
    text-align: center;

}

#input-section {
    background-color: #970BF4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#first-input, #second-input {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#second-input {
    padding: 15px 0;
}

.type-bar {
    width: 100%;
    height: 40px;
    border: 1px solid #970BF4;
    padding: 0 16px;
    box-sizing: border-box;
}

#button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

#button button {
    background-color: #970BF4;
    align-items: center;
    justify-content: center;
    color: #d9d9d9;
    font-size: 24px;
    padding: 15px;
}

button:hover {
    color: black;
}

footer {
    background-color: #970BF4;
    color: #d9d9d9;
    align-items: center;
    justify-content: center;
}

footer p {
    font-size: 12px;
}