@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');

/* Configurações Globais */

* {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
}

html {
    width: 100vw;
    background-color: #dedede;
}

header > a > img {
    display: block;
    margin: 50px auto;
    width: 150px;
}

header {
    text-align: center;
}

header > h1 {
    color: #3e4095;
}

main > div > a {
    display: block;
    margin: 20px auto;
    width: 80vw;
    max-width: 700px;
    text-align: center;
    font-weight: bold;
    color: #3e4095;
    text-decoration: none;
    padding: 10px;
    border-radius: 50px;
    border: 2px solid #3e4095;
}

main > div > a:hover {
    transition: 0.5s;
    border-color: 2px solid #3e4095;
    color: #ffff;
    background-color: #000000;
}

footer {
    text-align: center;
    margin: 50px;
}

footer > a > img {
    margin-bottom: 30px;
    width: 50px;
}

footer > a > img:hover {
    transition: 1s;
    opacity: 50%;
}

iframe {
    display: block;
    width: 90%;
    max-width: 700px;
    padding: 20px 10px;
    margin: 10px;
}