/*CSS*/

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

/* Layout */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body {
    font-family: "Inknut Antiqua", sans-serif;
    background-image: url(./img/images.jpg);
    background-size: 420px;
}

/* Cabeçalho */

header img {
    width: 100px;
    height: 100px;
    margin-top: 18px;
    border-radius: 50%;
}

/* principal */

main {
    text-align: center;
}

main h1 {
    margin: 15px 95px;
    font-size: 1.50rem;
    font-weight: 650;
    color:#ae00ff;
    background-color: #ffffff;
    border-radius: 20px;
    width: 138px;
    
}

main p {
    max-width: 320px;
    margin-left: 9px;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 1rem;
    color: #800185;
    background-color: #ffffff;
    border-radius: 20px;
    width: 310px;
    height: 62px;
    padding-top: 2px;
    background-position: center;
}

/* Links */
#links {
    display: flex;
    flex-direction: column;
}

.container > a {
    text-decoration: none;
    background-color: rgb(102, 0, 133);
    color: #ffffff;
    width: 300px;
    height: 46px;
    margin-bottom: 9px;
    text-align: center;
    padding-top: 15px;
    border-radius: 70px;
}

/* Rodapé */
footer {
    margin-top: 30px;
}

footer img {
    margin: 0px 25px;
}