@import "fonts.css";
@import "semantic.css";
:root{
    --green: #518E2B;
    --orange: #FD7E14;
    --green-tp: #518e2b9b;
}
::-webkit-scrollbar{
    width: 0;
}
*{
    box-sizing: border-box;
}
body{
    margin: 0;
}
.flex{
    display: flex;
}
.center_col{
    flex-direction: column;
    align-items: center;
}
section > h1{
    font-size: 1.8em;
}
article{
    padding: 1% 3%;
}
/*  BUTTON  */
button,input[type=button],input[type=submit],.button,::-webkit-file-upload-button{
    color: white;
    font-weight: bold;
    text-decoration: none;
    background: var(--green);
    padding: .5% 1%;
    font-size: 1.5em;
    border: none;
    border-radius: 5px;
    transition: ease .2s;
}
:where(button,input[type=button],input[type=submit],.button,::-webkit-file-upload-button):hover{
    background: green;
}
@media screen and (max-width: 600px){
    .flex{
        flex-direction: column;
        align-items: center;
    }
    .card{
        margin: 1%;
    }
}