*{
    padding: 0;
    text-decoration: none;
    list-style-type: none;
    font-family:  'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}

:root{
    --color-yellow: #FCF6BD;
    --color-pink: #FFABC3;
    --color-purple: #6E68BD;
    --color-white: #ffffff;
    --color-red: #850021;

    --font-big: 2rem;
    --font-medio: 1.1rem;
    --font-small: 0.875rem;
}

body{
    background-color: var(--color-pink);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-red);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 8vh;
}

.cabecalho-logo{
    font-size: 44px;
    text-transform: uppercase;
    margin-left: 30px;
    color: var(--main-color);
}

.cabecalho{
    display: flex;
    justify-content: space-between;
    background-color: var(--second-color);
    padding: 10px;
    align-items: center;
    color: var(--color-white);
}

.cabecalho-nav ul{
    display: flex;
    font-size: 18px;
    gap: 16px;
    margin-right: 30px;
    color: var(--color-red);
}

.cabecalho-nav a{
    color: var(--color-white);
    border-radius: 5px;
    padding: 13px;
}

.cabecalho-nav a:hover{
    color: var(--color-red);
}

nav{
    display: flex;
    align-items: center;
    padding-right: 2rem;
}

h1 {
    margin-top: 2rem;
    font-size: 2rem;
}
  
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
}
  
.content {
    margin: 2rem;
    font-size: 1.5rem;
    background-color: #850021;
    color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    align-items: center;
}

#resultado{
    padding-top: 2rem;
}

.txt{
    font-size: 1.5rem;
    width: 6rem;
    text-align: center;
}

footer{
    background-color: var(--color-white);
    padding: 1rem;
    font-size: 1.5rem;
    color: var(--main-color);
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 2vh;
    align-items: center;
}