.content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20vh;
}


h1{
    color: azure;
    font-size: 5rem;
    margin-bottom: 30px;
    user-select: none;
}


input {
    width: 40em;
    height: 3em;
    padding-left: 25px;
    border-radius: 42px;
    border: 1px solid #afb5b6;
    outline: none;
    transition: .3s linear;
    font-size: 1.2rem;
}


input:focus {
    box-shadow: 0 0 3px 3px #09e901;
}


form{
    display: flex;
}

form button {
    margin: 0 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.advertising{
    border: 1px solid #afb5b6;
    margin: 30px 0px;
}


@media (max-width: 900px) {
    form {
        white-space: nowrap;
        max-width: 70%;
    }


    input {
        max-width: 100%;
        height: 2em;
    }
}
