* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100vh;
    font-family: 'Lato', sans-serif;
    background-image: url(./images/background.png);
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
}

/*==========text's========*/
main {
    max-width: 800px;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 25px;
}

/*========Form's=========*/
.capture {
    padding: 50px;
}

.name, .email {
    width: 90%;
    height: 60px;
    border-radius: 10px;
    border: none;
    outline: none;
    margin: 10px;
    font-size: 20px;
    padding: 10px;
}
.inscricao {
    margin: 0 50px 0 50px;
}

.submit-button {
    width: 90%;
    height: 60px;
    margin-top: 50px;
    border-radius: 10px;
    border: none;
    outline: none;
    color: white;
    background-color: #007bff;
    font-size: 20px;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #005fc5
}