@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Prosto+One&display=swap');
@font-face {
  font-family: 'FonteLogo';
  src: url("../fonte/ProstoOne-Regular.ttf");
}

body {
  font-family: 'FonteLogo', sans-serif;
  background-color: #202021;
  color: #ffd700;
  text-align: center;
  padding: 1vw;
  transition: .5s;
}

/* HEADER */

.cabecalho {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 2px solid #333;
    height: 10vh;
    background-color: #202021;
    box-shadow: 0px 0px 10px rgba(0,0,0,.5);
    transition: .5s;
}

.logo-site-1 {
  display: flex;
  align-items: center;
}

.logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.titulo {
  font-family: 'FonteLogo';
  font-size: 24px;
  margin: 0;
  transition: 0.3s ease;
  cursor: pointer;
}

.titulo:hover {
  color: rgb(251, 255, 3);
  transition: 0.3s ease;
  text-shadow: 0 0 8px rgb(251, 255, 3);
}


/* MENU */

.menu ul {
  list-style: none;
  display: flex;
  padding: 10px;
  margin: 2px;
  gap: 25px;
}

.menu li {
  position: relative;
  font-weight: bold;
}

.menu a {
  font-family: 'FonteLogo';
  text-decoration: none;
  color: #f1e702;
  transition: 0.3s ease;
  position: relative;
}

.menu a:hover {
  color: #ff0000;
  text-shadow: 0 0 8px #ff0000;
}


/* LOGO BITCOIN */

.imagem-bitcoin {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin: 20px auto;
  max-width: 1000px;
}

.bitcoin {
  width: 80%;
  height: auto;
  padding: 20px;
  display: inline-block;
  overflow: hidden;
  transition: transform .7s ease-in-out;
  justify-content: space-between;
}

.bitcoin img {
  display: block;
  transition: transform 0.5s ease;
  transform-origin: center
}

.bitcoin:hover img{
  transform: rotate(360deg);
}


/* TABELA DE PREÇOS */

.tabela-crypto {
  flex: 1;
  background: #5b5959;
  padding: 20px;
  border-radius: 12px;
  color: #fff;
  height: auto;
}

.titulo-tabela {
  font-family: 'FonteLogo';
  margin-bottom: 15px;
  color: #ffd700;
  transition: 0.3s ease;
}

.titulo-tabela:hover {
  color: green;
  transition: 0.3s ease;
  text-shadow: 0 0 8px green;
  text-decoration: none;
}

.moeda {
  font-family: 'FonteLogo';
  margin: 10px 0;
  font-size: 20px;
}

.sobe {
  color: #00ff00; 
}

.desce {
  color: #ff3333;
}


/* RODAPE */

.rodape {
  text-align: center;
  font-style: italic;
  color: #f1e702;
  background-color: #202021;
  margin: 30px 0px -30px 0;
  padding: 20px;
  border-bottom: 0px 0px 0px 2px solid;
  box-shadow: 0px 0px 0px 2px rgba(59, 58, 58, 0.8);
  transition: .5s;
}

.cor-rodape {
  color: #f1e702;
  text-decoration: none;
  transition: 0.3s ease;
}

.cor-rodape:hover{
  color: #ff0000;
  transition: 0.3s ease;
  text-shadow: 0 0 8px #ff0000;
  text-decoration: none;
}
