@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

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

body {
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
}

.ajuda {
    background-color: #F7931A;
    width: 100%;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ajuda a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.header_logo {
    display: flex;
    height: 36px;
}

.cabeçalho {
    display: flex;
    justify-content: space-around;
    height: 70px;
    border-bottom: 1px solid #ddd;
    align-items: center;
}

.cabeçalho ul {
    display: flex;
    gap: 36px;
}

.cabeçalho ul li {
    list-style: none;
}

.cabeçalho ul li a {
    text-decoration: none;
    color: #4c4c4c;
    font-weight: 400;
}

.cabeçalho ul li a:hover {
    text-decoration: none;
    color: #F7931A;
    font-weight: 400;
}

.rodape {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 6rem;
    justify-content: center;
    background-color: #4c4c4c;
    align-items: center;
    gap: 1rem;
}

.rodape p {
    display: flex;
    justify-content: space-around;
    color: white;
}

.hero {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.skull_of_satoshi {
    margin-top: 2rem;
    width: 30%;
    max-width: 300px;
}

.textbuttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.textbuttons h1 {
    font-size: 3rem;
    color:#4c4c4c;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.textbuttons p {
    color: #4c4c4c;
}

.orangetext {
    color:#F7931A;
}

.textbuttons p {
    font-weight: 400;
}

.textbuttons button {
    width: 140px;
    height: 50px;
    border-radius: 0px;
    border-style: none;
    color: white;
    background-color: #F7931A;
    font-weight: 600;
}

.textbuttons button:hover {
    background-color: #ffa536;
}

.descricao {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 2rem;
    gap: 1rem;
}

.descricao p {
    color:#4c4c4c;
    font-weight: 400;
    width: 50%;
    text-align: center;
}

.descricao h2 {
    color:#F7931A;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.descricao p a {
    text-decoration: none;
    color:#F7931A
}

@media (max-width: 768px) {
    .cabeçalho {
        flex-direction: column;
        height: auto;
        padding: 1rem;
        gap: 1rem;
    }

    .header_logo {
        height: 28px;
    }

    .cabeçalho ul {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .skull_of_satoshi {
        width: 80%;
        margin-top: 1rem;
    }

    .textbuttons h1 {
        font-size: 2rem;
    }

    .textbuttons {
        align-items: center;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .descricao p {
        width: 90%;
    }

    .rodape {
        text-align: center;
        padding: 1rem;
        height: auto;
    }
}
