*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
html{
    height: 80vh;
    font-size: 14px;
}
body{
    background-color: rgb(248, 252, 255);
    height: 100%;
}
.container{
    height: 100%;
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
}

header{
    text-align: center;
    margin-bottom: 30px;
}
header img{
    max-width: 110px;
    margin-bottom: 20px;
}

header h1{
    font-size: 2.5em;
    font-weight: 500;
}
header p.funcionamento{
    margin-top: 10px;
    font-size: 1.2em;
    font-weight: bold;
}
header p.horario{
    font-size: 1.2em;
    color: rgba(0, 0, 0, 0.795);
}
.subtitulo{
   margin-left: 25px;
   margin-bottom: 15px;
   color: rgb(56, 56, 56);
   font-size: 1em;
}

section.botoes-links{
    display: flex;
    flex-direction: column;
    gap: 35px;
}

a.link button{
    width: 100%;
    padding: 19px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    border-radius: 25px;
    font-size: 1.2em;
    cursor: pointer;
    background-color: #ffcf00;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.61);
    transition: .2s;
}
a.link button:hover, footer a.btn-footer:hover{
    transform: scale(1.05);
}
a{
    text-decoration: none;
    color: black;
}
a button img{
    max-width: 22px;
}
a button span{
    font-weight: bold;
    color: rgba(19, 19, 19, 0.842);
}
footer{
   margin-top: 30px;
    text-align: center;
    background-color: #ffcf00;
    padding-bottom: 5px;
}
footer a.btn-footer{
    width: 60px;
    height: 60px;
    display: inline-block;
    background-color: #ffffff;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.61);
    font-size: 2em;
    line-height: 60px;
    border-radius: 50%;
    margin: 25px 15px 25px 15px;
    color: rgb(20, 20, 20);
    transition: .2s;
}

footer div.info span{
    display: block;
    color: rgb(90, 85, 72);
    font-size: 13px
}
footer span{
    margin-bottom: 10px;
}