* {
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-image: linear-gradient(45deg, #6ECCE5, #2134E5);
}

main {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

picture {
    width: 15%;
    padding: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

img {
    width: 100%;
}

h2 {
    padding: 5px;
}

#borda {
    padding-top: 5px;
    border-top: 1px solid rgba(0, 0, 0, 0.295);
}
section {
    max-width: 300px;
    padding: 10px;
    border-radius: 7px;
    border: 1px solid black;
    background-color: white;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

article {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;

    margin: 5px;
    border-radius: 7px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.884);
    transition-duration: 0.5s;
}

article:hover {
    padding: 2px;
    background-color: rgb(211, 211, 211);
    transition-duration: 0.5s;
}

a {
    color: black;
    font-weight: bolder;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.479);
}

header, footer {
    text-align: center;
}

header {
    padding: 10px;
    color: white;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.63);
}

header > h1 {
    padding: 5px;
    font-size: 3em;
}

header > p {
    font-size: 1.7em;
    padding: 10px;
    font-weight: bolder;
}

footer {
    padding: 10px;
    background-color: white;
    border-top: 1px solid rgba(0, 0, 0, 0.692);
}

footer a:hover {
    text-decoration: underline;
}
