@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');


*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
}

html{
    scroll-behavior: smooth;
    scrollbar-width: thin;  /* "auto" or "thin" */
    scrollbar-color: #00FF8B #271f30 ;   /* scroll thumb and track */   
}   

/* scroll bar personalization */
body::-webkit-scrollbar {
    width: 12px;               /* width of the entire scrollbar */
}
  
body::-webkit-scrollbar-track {
    background: #271F30;        /* color of the tracking area */
}
  
body::-webkit-scrollbar-thumb {
    background-color: #00FF8B;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 3px solid #271F30;  /* creates padding around scroll thumb */
}

/* footer */
footer{
    text-align: center;
    font: 500 1em "Poppins", sans-serif;
    background-color: #7D68DF;
    color: #FEFFFE;
    margin-top: 30px;
    padding: 3px;
    
}

nav{
    position: sticky;
    top: 0px;
    background-color: #271f3096;
    display: flex;
    justify-content: space-between;
    z-index: 3;
}

body{
    background-color: #271F30;
    background-image: url("assets/fundo.png");
}

a{
    color: #00FF8B;
}

.navbar{
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
}

.navitem{
    padding-right: 30px;
    font-family: 'Poppins', sans-serif;
}

#logo{
    padding-left: 15px;
}

#reception{
    display: flex;
    align-items: center;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    margin-top: 100px;
}

#welcome{
    font-size: 7em;
    text-align: center;
    color: #FEFFFE;
}

#subwelcome{
    color: #F5F5F5;
    margin-top:30px;
    margin-bottom: 100px;
    font-size: 1.3em;
}

#opressor{
    color: #00FF8B;
}

#arrowdown{
    position: absolute;
    top: 90%;
    left: 47%;
    width: 80px;
    height: 80px;
    animation: MoveUpDown 1.2s linear infinite;
}

#whowe{
    display: flex;
    align-items: left;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    margin: 70px;
}

#whotitle{
    color: #7D68DF;
    font-size: 3.5em;
    margin-bottom: 20px;
}

#whodesc{
    color: #FEFFFE;
    font-size: 1.5em;
}

.green{
    color: #00FF8B;
}

#projecttitle{
    color: #00FF8B;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 3.5em;
}

#cards{
    display: flex;
    justify-content: space-evenly;
    margin-top: 40px;
}

.card .cardcontent{
    background-color: #231D2B;
    width: 403px;
    border-radius: 10px;
}

.card_text{
    padding: 10px;
}

.cardtitle{
    font-family: 'Poppins', sans-serif;
    color: #00FF8B;
    font-size: 1.5em;
}

.cardesc{
    font-family: 'Poppins', sans-serif;
    color: #FEFFFE;
    font-size: 0.9em;
}

.cardcontent{
    margin: 7px;
}

.cssbuttons-io-button {
    background: #7D68DF;
    color: white;
    font-family: inherit;
    padding: 0.35em;
    padding-left: 1.2em;
    font-size: 17px;
    font-weight: 500;
    border-radius: 0.9em;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em #714da6;
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
}
   
.cssbuttons-io-button .icon {
    background: white;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em #7b52b9;
    right: 0.3em;
    transition: all 0.3s;
}
   
.cssbuttons-io-button:hover .icon {
    width: calc(100% - 0.6em);
}
   
.cssbuttons-io-button .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: #7b52b9;
}
   
.cssbuttons-io-button:hover .icon svg {
    transform: translateX(0.1em);
}
   
.cssbuttons-io-button:active .icon {
    transform: scale(0.95);
}
   
.footercard{
    background-color: #00FF8B;
    height: 16px;
    margin-top: 18px;
    border-radius: 0px 0px 10px 10px;
}

.cardimg{
    height: 207px;
    width: 100%;
    border-radius: 10px 10px 0px 0px;
}

@keyframes MoveUpDown {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
}

@media only screen and (max-width: 700px) {
    #cards{
        display: grid;
        align-content: center;
    }
    #welcome{
        font-size: 5em;
    }
    
    #subwelcome{
        font-size: 1em;
    }
}
