@import "tailwindcss";

body {
    background-color: #eee;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

h1 {
    padding-top: 35px;
    padding-bottom: 20px;
}

button {
    border: none;
    background-color: green;
    color: white;
    font-weight: 500;
    padding: 10px 20px;
    text-transform: capitalize;
    cursor: pointer;
}

ul {
    list-style-type: none;
    padding: 20px 0;
}

.class-demo-list li {
    color: grey;
    display: inline;
    padding-left: 20px;
    padding-right: 20px;
}

.class-demo {
    text-align: center;
}

.css-grid-example {
    display: grid;
    grid-template-columns: 4fr 4fr;
    height: 400px;
    gap: 10px;
}

.css-grid-example p {
    border: 1px solid;
    padding: 20px;
    margin: 0px;
    background-color: dimgray;
    color: white;
}

.css-flex-example p {
    border: 1px solid;
    padding: 20px;
    margin: 0px;
    background-color: gold;
    color: black;
}

.css-flex-example {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    height: 400px;
    align-items: center;
    gap: 10px;
}