@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

:root {
    --cor-principal: #000000;
    --cor-secudaria-um: #bf9853;
    --cor-secundaria-dois: #832f2f;
    --cor-textos: #e3e3e3;
    --fonte-principal: "Montserrat", sans-serif;
    --fonte-titulos: "Oswald", serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--fonte-principal);
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    background-color: var(--cor-principal);
}

p {
    font-size: 20px;
    color: #e3e3e3;
    font-weight: lighter;
}

a {
    font-size: 13pt;
    color: #fff;
}

h1 {
    letter-spacing: 2px;
    font-size: 50px;
    color: var(--cor-secudaria-um);
    text-align: center;
    font-family: var(--fonte-titulos);
    margin-bottom: 20px;
    font-weight: normal;
}

li {
    color: #fff;
}

ul {
    width: 90%;
}

@media (max-width: 768px) {
    h1 {
        font-size: 30px;
        margin-top: 20px;
    }
    p {
        font-size: 15px;
    }
}

#google_translate_element {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: white;
  padding: 6px 10px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}