{
    margin: 0;
    padding: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"

}
html,body{
    width: 100%;
    height: 100%;
    font-size: 100%;
    letter-spacing: .25px;
    font-weight: 300;
    line-height: 1.5rem;
}
.p-4 {
    padding: 1rem;
}
.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}
.m-4 {
    margin: 1rem;
}
.mb-4 {
    margin-bottom: 1rem;
}
.mt-4 {
    margin-top: 1rem;
}
.bg-green {
    background-color: #87bd25;
}
.bg-green-300 {
    background-color: #97cc38;
}
.bg-white {
    background-color: #fff;
}
.bg-gray-900 {
    background-color: #404040;
}
.text-green {
    color: #87bd25;
}
.text-gray-300 {
    color: #c1c1c1;
}
.text-gray {
    color: #686868;
}
.text-black {
    color: #000;
}
 .text-white {
    color: #fff;
}
.border-black {
    border: 1px solid #000;
}
.border-green-300 {
    border: 1px solid #87bd25;
}
.border-green-200 {
    border: 1px solid #c7ff61;
}
.rounded {
    border-radius: .25rem;
}
.rounded-full {
    border-radius: 25rem;
}
.text-sm {
    font-size: .85rem;
}
.text-md {
    font-size: 1rem;
}
.text-lg {
    font-size: 1.25rem;
}
.text-xl {
    font-size: 1.5rem;
}
.font-normal {
    font-weight: 500;
}
.font-light {
    font-weight: 300;
}
.flex {
    display: flex;
}
.flex-row {
    flex-direction: row;
}
.flex-col {
    flex-direction: col;
}
.justify-between {
    justify-content: space-between;
}
.items-center {
    align-items: center;
}
.underline-none {
    text-decoration: none;
}
.text-center {
    text-align: center;
}
.w-full {
    width: 100%;
}
.uppercase {
    text-transform: uppercase;
}
.justify-end {
    justify-content: flex-end;
}

.shadow {
    box-shadow: 3px 3px 3px rgba(0,0,0,.15)
}