@import url('https://fonts.googleapis.com/css2?family=Anton&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Mea+Culpa&family=Meie+Script&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
a, button{
    cursor: pointer;
    text-decoration: none;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
}

body{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}
.container{
    height: 100vh;
}
.container section{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color:#000;
     border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom: solid 2px #ED1F24;
}
.container section span{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 7px;
    margin-left: 7px;
}
.container header{
    padding-top: 20px;
    border-bottom: solid 2px #ED1F24;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#relogio {
    color:#ed1f24;
    margin-top: 10px;
    font-size: 2em;
    font-weight: bold;
}
#saudacao {
    font-size:
    1.1em; margin:
    10px 0;
    font-weight: bold;
    color: #fff;
    margin-bottom: -10px;
}
.container .enderecos{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container .enderecos a button{
    width: 100px;
    height: 30px;
    margin: 5px;
    padding: 10px;
    display: flex;
    border: none;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: 900;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #fff;
    background: linear-gradient(90deg, rgb(237, 31, 36) 0%, rgb(237, 31, 36, 0.5) 100%);
}
.container .enderecos a button:hover{
    transition-duration: 0.5s;
    color: #fff;
    background-color: rgb(237, 31, 36, 0.5);
}
.container header figure{
    display: flex;
    padding-bottom: 30px;
    align-items: center;
    justify-content: center;
}
.container header .cabecalho{
    display: flex;
    align-items: center;
    justify-content: center;
}
.container header .cabecalho .logo-gif{
    width: 100px;
}
.container header .cabecalho .logo-tipografia{
    margin-left: -20px;
}

.container main .corpo{
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #242323;
    background-size: 600px;
    background-repeat: no-repeat;
    background-position: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-image: url(/assets/images/divena.png);
}
.container main .corpo .retiradas .enderecos strong{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.container main .corpo .links{
    display: flex;
    margin-top: 5px;
}
.container main .corpo nav{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.container main .corpo nav a{
    text-decoration: none;
}
.container main .corpo nav a button{
    width: 15.5em;
    height: 30px;
    margin: 5px;
    padding: 20px;
    display: flex;
    border: none;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #fff;
    background: linear-gradient(90deg, rgb(237, 31, 36) 0%, rgb(237, 31, 36, 0.5) 100%);
}
.container main .corpo nav a button:hover{
    background-color: #000000;
}
.container footer{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    border-top: solid 5px #ED1F24;
}
.container footer .rodape{
    color: #fff;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.container footer .rodape figure img{
    padding: 20px;
    width: 350px;
    padding-top: 10px;
}
.container footer .rodape small{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.container footer .rodape p{
    padding: 5px;
     display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.seusomvisual{
    width: 100px;
    margin-left: 5px;
}

@media(max-widht: 370px){
  .container main .corpo .links{
    display: flex;
    flex-direction: column;
}
}


 @keyframes aparecer{
      from{
        opacity:0;
        transform:translateY(30px);
      }
      to{
        opacity:1;
        transform:translateY(0);
      }
    }

    .saudacao{
      font-size:32px;
      font-weight:bold;
      margin-bottom:20px;
      color:#FFD700;
      text-shadow:0 0 10px rgba(255,215,0,0.7);
    }

    .relogio{
      font-size:50px;
      font-weight:bold;
      margin-bottom:10px;
      letter-spacing:3px;
    }

    .data{
      text-align: center;
      font-size:18px;
      margin-bottom:25px;
      color:#ddd;
    }

    .tempo{
      margin-top:20px;
      padding:20px;
      border-radius:20px;
      background: rgba(255,255,255,0.08);
    }

    .tempo h2{
      margin-bottom:15px;
      color:#00e5ff;
    }

    .temperatura{
      font-size:42px;
      font-weight:bold;
      margin:10px 0;
    }

    .descricao{
      font-size:18px;
      text-transform:capitalize;
      color:#f1f1f1;
    }

    .cidade{
      margin-top:10px;
      font-size:16px;
      color:#ccc;
    }

    .icone{
      width:90px;
      margin-top:10px;
    }