* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

html {
  /*variáveis*/
  --bg-color: #EDF2FF;
  --text-color: #00082F;
  --primary-color: #f58634;
  --primary-color2: #f28624;
}

body.dark-blue {
  --bg-color: #000000;
  --text-color: #FFFFFF;
}

body {
  background: url('../img/bg-ferrugem.png') no-repeat ;
  background-size: cover;
  color: var(--text-color);
  font-family: 'Roboto', sans-serif;
}

.container {
  text-align: center;
  width: 220px;
  margin: 60px auto;
}

.logo-container{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color:white;
  padding: 30px;
}

img {
  width: 100%;
}

img.avatar {
  width: 200px;
}

h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.username {
  font-family: 'Roboto Mono', monospace;
  font-weight: 400;
  opacity: 0.8;
  font-size: 16px;
}

ul {
  list-style: none;
  margin: 28px 0;
}

ul li a {
  height: 53px;
  /*tag A tem display inline*/
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: white;
  text-transform: uppercase;
  font-size: 14px;

  margin-bottom: 16px;
  border-radius: 6px;

  transition: background 400ms
}

ul li a:hover {
  background: var(--primary-color2);
}

footer {
  margin-top: 60px;
  font-weight: 500;
  font-size: 12px;
  opacity: 0.6;
  transition: opacity 400ms;
}

footer:hover {
  opacity: 1;
}

footer a {
  color: var(--text-color);
}

.social{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 20px;
  padding: 20px 0;
}

ion-icon {
  color: var(--primary-color);
  font-size: 64px;
}

.horario{
  display: flex;
  flex-direction:column;
  gap: 5px;
  color:#FFFFFF;
}

.horario h3{
  color: var(--primary-color);
  margin-bottom: 5px
}

.horario span{
  font-weight: bold;
  color: var(--primary-color)
}

.horario p{
  font-size: 14px
  color:#FFFFFF;
}

