header {
    background-color: black;
    width: 100%;
    height: 150px;
    padding: 10px 0;
    text-align: center;
    border-radius: 2%;
    border: 1px solid #ffffff;
}


    body{
        display: flex;
        flex-direction: column;
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        background-color: #ffffff;
        background-image: url(images/brasil.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    main {
        flex: 1;
        padding: 20px;
    }


header h1 {
    color: white;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav:hover{
    transform: scale(1.1);
}

a:hover{
    color: red;
    transition: 0.3s;
}

.logo:hover{
    transform: scale(1.1);
}

.info {
    background-color: rgb(0, 0, 0);
    height: 20%;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 10px;
    border: 1px solid #ffffff;
}

.historia {
    background-color: #000000;
    color: red;
    padding: 20px;
    border: 1px solid #ffffff;
    text-align: center;
    margin-top: 10px;
}

.historia h2 {
    color: red;
}

.teste {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.lutadores {
    text-align: center;
    background-color: #000000;
    border: 1px solid #c20000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 2px 2px 2px 2px rgba(58585);
    width: calc(25% - 20px);
    box-sizing: border-box;
    color: #ffffff;
    margin-top: 10px;
}

.lutadores img{
    width: 100%;
    height: auto;
}

.eu {
    background-color: #000000;
    text-align: center;
    color: #ffffff;
    height: 70%;
    width: 30%;
    padding: 20px;
    margin-left: 33%;
}

.eu img {
    width: 100%;
    height: 400px;
    border-radius: 50%;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000000;
    color: #ffffff;
    margin-top: 20px;
}

form label {
    margin-top: 10px;
}

form input, form textarea {
    padding: 5px;
    margin-top: 5px;
    width: 100%;
    max-width: 400px;
}

form input[type="submit"] {
    margin-top: 20px;
    background-color: #000000;
    color: rgb(255, 255, 255);
    border: none;
    padding: 10px;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: rgb(255, 0, 0);
}
