@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');
* {
    padding: 0;
    margin: 0;
    
}

body {
    font-family: 'Kaushan Script', cursive;
    background: #f55;
    
    width: 100vw;
   
}

#header {
    display: flex;
    padding: 2rem;
    justify-content: space-around;
}

a{
    text-decoration: none;
    color: orange;
}

.inline-list li {
    display: inline;
    margin: 0 1rem;
    text-decoration: none;
}

section {
    display: flex;
    max-width: 90%;
    padding-left: 28%;
}

#left-div {
    padding: 2rem 0;
}

#left-div img {
    max-width: 1000px;
}

#right-div {
    padding: 0 2rem;
}

#right-div h1 {
    margin-left: 1rem;
    font-size: xxx-large;
    color: 
    red;
}

#right-div p {
    font-size: larger;
    font-weight: 600;
}

#logo {
    font-size: xx-large;
    font-weight: 600;
}

#logo span {
    color: yellow;
}

ul img {
    width: 55px;
}

.input {
    padding: 0.8rem 2rem;
    margin: 0.8rem 1rem;
    background: #FBBF24;
    border: none;
    box-shadow: 5px 7px 7px #dddddd, -6px -4px 10px 0px #ddddddbd;
    border-radius: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    outline: none;
}

#cash-div {
    visibility: hidden;
    /* height: 0; */
}

#cash-div.show {
    visibility: visible;
}

.changeReturn {
    visibility: hidden;
    /* height: 0; */
}

.changeReturn.show {
    visibility: visible;
    /* margin-left: 1rem; */
}

.input::placeholder {
    font-size: 1.2rem;
    font-weight: 500;
    color: #000;
}

.btns {
    padding: 0.8rem 2rem;
    margin: 0.8rem 1rem;
    background: #FBBF24;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 3px 4px 7px #dddddd, -6px -4px 10px 0px #ddddddbd;
    border-radius: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.label {
    font-size: x-large;
    font-weight: 500;
    margin-left: 1rem;
}

.styled-table {
    /* border-collapse: collapse; */
    margin: 1rem;
    font-size: larger;
    border-radius: 2rem;
    font-weight: 500;
    border: 1px solid #CCCCCC;
    min-width: 350px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.styled-table thead tr {
    background-color: #FBBF24;
    color: #ffffff;
    text-align: left;
    /* border-radius: 2rem; */
}

.styled-table th,
.styled-table td {
    padding: 10px 20px;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #FBBF24;
    color: red;
    font-weight: 500;
}

table {
    border-spacing: 0;
    width: 500px;
    margin: 30px;
}

.bordered th:first-child {
    border-radius: 1rem 0 0 0;
}

.bordered th:last-child {
    border-radius: 0 1rem 0 0;
}

#loading {
    visibility: hidden;
    height: 0;
}

#loading.show {
    visibility: visible;
}

@media screen and (max-width: 600px) {
    section {
        flex-direction: column;
        max-width: 100%;
    }
    #header {
        display: block;
    }
    #left-div img {
        max-width: 400px;
    }
    table {
        width: auto;
    }
    #right-div {
        padding: 0;
        text-align: center;
    }
    .styled-table {
        margin: auto;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    #logo {
        margin-bottom: 1rem;
    }
    .inline-list li {
        margin: 0 0.8rem;
    }
    ul img {
        width: 40px;
    }
}
footer{
    display: flex;
    background: red;
    border-radius: 2rem;
    box-shadow: #dddddd;
    padding-left: 1rem;
    padding-top: 0.2rem;
    margin-down: 1rem ;
}