@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Changa+One:ital@0;1&family=Lobster&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


* {
    box-sizing: border-box;
}

body {
    position: relative;
    font-family: "Roboto", sans-serif;
    margin: 0;
    background-image: linear-gradient(black, gray);
}

.navbar {
    display: flex;
    flex-flow: row wrap;
    height: 100px;
    border-bottom: 2px solid gray;
    justify-content: center;
    align-items: center;
}

.logo {
    margin-left: 10%;
    font-family: 'Changa One', sans-serif;
    flex: 20%;
    color: white;
    text-align: left;
}

.links {
    flex: 70%;
    
    text-align: right;
    padding: 20px;
}

.links a {
    color: white;
    text-decoration: none;
    padding: 20px;
}

.links a:hover {
    
    border-top: 2px solid white;
}

#botao {
    background-color: gray;
    color: white;
    border-radius: 5px;
    margin-left: 50px;
    padding: 10px 25px;
    border: 2px solid white;
}

#botao:hover {
    border: none;
    background-color: white;
    color: gray;
    border: 2px solid white;
}

.header {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

.headline {
    margin-left: 10%;
    flex: 40%;
}

.headline h2 {
    padding: 0;
    margin: 0;
    color: white;
}

.img-headline {
  background: #0f172a;
  color: #e2e8f0;
  padding: 20px;
  border-radius: 12px;
  font-family: monospace;
  font-size: 14px;
  flex: 30%;
  margin-right: 5%;
}

.headline a {
    border: 2px solid white;
    background-color: gray;
    border-radius: 5px;
    padding: 10px;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
}

.headline a:hover {
    background-color: white;
    color: gray;
}

.footer {
    margin-top: 5px;
    border-top: 5px solid white;
    background-color: #221f22;
    text-align: center;
    height: 450px;
}

.titulo-agencia {
    font-family: 'Changa One', sans-serif;
}

.footer h2 {
    color: white;
}

.footer h3 {
    margin: 0;
    color: white;
}

.rodape {
    padding: 120px;
}

.footer b {
    color: white;
    bottom: 0;
}

@media only screen and (max-width: 600px) {

    .navbar {
        position: relative;
    }

    .links {
        display: none;
    }

    .logo {
        margin: 0;
        text-align: center;
    }

    .header {
        padding-top: 50px;
    }

    .headline {
        flex: 100%;
        margin: 5%;
        text-align: center;
    }

    .headline h2 {
        text-align: center;
    }

    .img-headline {
        flex: 100%;
        margin: 5%;
        text-align: center;
    }
}