body{
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  padding-bottom: 100px
  ;}
header{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: white;
    background-color: #BD3817;
    margin-bottom: 50px;
}
.logo-nome {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 100px;
  height: auto;
  border-radius: 50%;
}
h3{
    color: #BD3817;
    background-color: #ffebeb;
    width: 100%;
    text-align: center;
    margin-block: 2px;
    padding-block: 5px;
    font-weight: bold;
}


#main-index{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
#area-btns{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.btn-menu{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
  animation: pulse 3s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(189, 56, 23, 0.6);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px 10px rgba(189, 56, 23, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(189, 56, 23, 0);
  }
}
.btn-menu img{
    height: 100px;
    width: 100px;
}

.btn-menu:hover{
    transform: scale(1.02);
    box-shadow: 0px 5px 15px black;
}