:root{
    --lilas: #5d17eb;
    --verde: #12ff6a;
    --preto: #1b1b1b;
}

span{
    color: var(--lilas);
}

@font-face {
    font-family: "Poppins-Bold";
    src: url(../src/fonts/Poppins-Bold.ttf);
}
@font-face {
    font-family: "Poppins-Regular";
    src: url(../src/fonts/Poppins-Regular.ttf);
}

body{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background-color: var(--preto);
    color: var(--preto);
    font-family: "Poppins-Regular", serif;
}
h1,h2,h3,h4{
    font-family: "Poppins-Bold", serif;
}
main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: url(../src/logo/CódigoKid_Logo_Branco.png);
    background-size: 30%;
}
section{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
    padding: 20px;
    font-size: 1.2rem;
}
article{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 70%;    
    padding: 10px;
    background-color: var(--preto);
    border: 2px solid var(--verde);
    border-radius: 20px;
    gap: 30px;    
}

a{
    padding: 10px;
    background-color: var(--lilas);
    color:#fff;
    text-decoration: none;
    border: 0;
    border-radius: 10px;
}

iframe{
    width: 100%;
    /*max-width: 640px;*/
    height: 1700px;
    border: 0;
    border-radius: 20px;
}

#link-topo{    
    text-decoration: none;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: #00000081;
    background-color: #ffffff81;
    border: 2px solid #ffffff81;
    border-radius: 50%;
    padding: 15px;
    position: fixed;
    right: 20px;
    bottom: 20px;
}
#link-topo:hover{
    color: #fff;
    background-color: var(--lilas);
    border: 2px solid #fff;
}