@import url('https://fonts.googleapis.com/css2?family=Oswald&family=Science+Gothic:wght@100..900&family=Sora:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald&family=Science+Gothic:wght@100..900&family=Sora:wght@100..800&display=swap');

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

html {
    scroll-behavior: smooth;
    Scrollbar-width: none;
}

a:hover {
    display: inline-block;
    animation: pulsar1 3s infinite;
}

.section-inicial {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 1)), url(images/Background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.conteudo-header {
    color: #F5FAFF;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 15px;
    border-bottom: 3px solid #F5FAFF;
}

.conteudo-header-left {
    color: #F5FAFF;
    margin-top: -15px;
    margin-left: 20px;
    margin-right: 800px;
    font-style: italic;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px 25px;
    padding-top: 4px;
    padding-bottom: 2px;
}

.hoody-header {
    align-self: flex-start;
    font-size: 40px;
}

.bot-header {
    align-self: flex-end;
    font-size: 20px;
}

.conteudo-header-right {
    font-style: italic;
    font-size: 20px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 1px;
    padding-bottom: 1px;
}

.anchor-header {
    color: #F5FAFF;
}

.conteudo-principal {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    align-items: center;
    justify-content: space-around;
    color: #F5FAFF;
    font-size: 24px;
    padding-top: 120px;
}

.avatar img {
    border-radius: 50%;
    height: 300px;
    width: 300px;
    animation: pulsar2 5s infinite;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 130, 255, 0.5);
}

.conteudo-bot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-right: 48px;
}

h1 {
    color: #2aaaff;
    font-size: 48px;
}

.conteudo-bot a {
    background-color: #0082ff;
    color: #F5FAFF;
    font-size: 24px;
    border-radius: 16px;
    justify-content: center;
    padding: 12px 24px;
}

.conteudo-bot-desc {
    color: #F5FAFF;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-top: 64px;
}

.conteudo-bot-desc a {
    background-color: #0082ff;
    color: #F5FAFF;
    font-size: 24px;
    border-radius: 16px;
    justify-content: center;
    padding: 12px 24px;
}

@keyframes pulsar1 {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes pulsar2 {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}