* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    height: 100vh;
    font-size: 14px;
}

body {
    background-image: linear-gradient(to left, #02DBE4, #000131);
    height: 100%;
}

.container {
    height: 100%;
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    color: #fff;

}

i.bi-whatsapp {
    text-decoration: none;
    color: #4aa11f;
}
i.bi-facebook {
    text-decoration: none;
    color: #2b6baf;
}
i.bi-github {
    text-decoration: none;
    color: #000407eb;
}

a {
    text-decoration: none;
    color: #fff;
}

.degrade {
    background: linear-gradient(to right, #FE4701, #FF0054);
}

/* ESTILO DO HEADER */

header {
    text-align: center;
    margin-bottom: 40px;
}

header img {
    max-width: 150px;
    margin-bottom: 20px;
    border-radius: 50%;
}

header h1 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #090402;
    font-weight: 300;
}

/* ESTILO DOS BOTÕES */

section.botoes-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

a.link button {
    width: 100%;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    border-radius: 30px;
    font-size: 1.2em;
    cursor: pointer;
    color: #fff;


    transition: .2s;
}

a.link i {
    font-size: 1.5em;
}

a.link button:hover,
footer a.btn-footer:hover {
    transform: scale(1.05);
}

/* ESTILO DO FOOTER */

footer {
    text-align: center;
    margin: 30px;
}

footer a.btn-footer {
    width: 60px;
    height: 60px;
    display: inline-block;
    font-size: 2em;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 10px;
    transition: .2s;
}
