* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    max-width: 100%;
    max-height: 100%;
}

.nav {
    background-color: #1A2130;
    padding-left: 1.8rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
}

.nav-menu {
    margin-left: 10rem;
    margin-top: auto;
    margin-bottom: auto;
}

.header-info {
    text-align: left;
}

.header-info a {
    padding: 0;
    text-decoration: none;
    color: white;
    font-style: italic;
    font-size: 4rem;
}

.header-info a:hover {
    background-color: transparent;
}

.main {
    width: 100%;
    background-color: #524C42;
    background-size: auto;
}

.awal {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('assets/photobg-1497515114629-f71d768fd07c.avif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    mask-image: linear-gradient(rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0));
    padding-bottom: 10rem;
}

.awal .content h1 {
    margin-left: 1rem;
    font-size: 5em;
    color: white;
    text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
    line-height: 1;
    font-family: "Poetsen One", sans-serif;
    font-weight: 400;
    font-style: normal;
}
  
.awal .content p {
    font-family: "Edu TAS Beginner", cursive;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 1.6rem;
    color: white;
    margin-top: 1rem;
    margin-left: 1rem;
    line-height: 1.4;
    font-weight: 100;
    text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
    mix-blend-mode: difference;
    margin-right: 3rem;
}

.awal .content .button {
    margin-top: 1rem;
    margin-left: 1rem;
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.4rem;
    color: white;
    background-color: blueviolet;
    border-radius: 0.5rem;
    text-decoration: none;
    box-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}

.awal .content .button:hover {
    background-color: #AF8260;
    transition: 0.5s;
}

.wrapper-card {
    flex-direction: row;
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    max-width: 100%;
    max-height: 100%;
}

.card {
    margin: 1rem;
	padding: 1rem;
	border: 3px solid black;
	border-radius: 1rem;
	box-shadow: 5px 5px 15px black;
    background-color: #AF8260;
}

.card img {
    border-radius: 1.25rem;
    box-shadow: 0.7rem 0.7rem 0.4rem #AF8260;
    border: 5px;
}

.star .star-full {
    fill: yellow;
}

.order button{
    background-color: turquoise;
    margin-left: 60%;
    font-size: 1.1rem;
    padding: 0.3rem;
    border-radius: 1rem;
}

.order button:hover {
    transition: 0.5s;
    background-color: #FED8B1;
    cursor: pointer;
    text-decoration: underline;
}

table {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    background-color: whitesmoke;
}

table,tr,td,th {
    border: 4px solid black;
    width: 40rem;
    height: 5rem;
    font-size: larger;
    border-radius: 1rem;
}

th {
    font-size: 2rem;
    background-color: #74512D;
}
td {
    background-color: #AF8260;
    align-items: center;
}

td img {
    margin-top: 1rem;
    border: 5px solid black;
    border-radius: 30px;
    box-shadow: 5px 5px 5px whitesmoke;
    opacity: 0.8;
}

td:hover {
    transition: 0.5s;
    cursor: no-drop;
    background-color: #FED8B1;
}

td:hover img {
    opacity: 1;
    cursor: no-drop;
}

.tab-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.tab {
    background-color: gainsboro;
    opacity: 75%;
    width: 400px;
    padding: 40px;
    margin: 20px;
    border-radius: 20px;
}

h1.name {
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: black;
}
h2.price {
    font-size: 38px;
    color: black;
}

.list {
    list-style-type: disc;
    margin-bottom: 50px;
    text-align: left;
}

.list li {
    margin-top: 20px;
    color: black;
}

hr {
    height: 7px;
    width: 80%;
    margin: auto;
    background-color: rgb(219, 84, 75);
    border: none;
    border-radius: 50px;
    margin-top: 20px;
}

footer {
    background-image: linear-gradient(to top, red, white);
    padding-bottom: 1rem;
    padding-top: 1rem;
}

.main-footer {
    display: flex;
    justify-content: center;
    width: 100%;
}

.left-footer {
    margin-right: auto;
    margin-left: 2.5rem;
}

.right-footer {
    margin-left: auto;
    margin-right: 2.5rem;
}

.center-footbar {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
}

.info-left {
    color: black;
    text-align: left;
    width: 100%;
}

.info-right {
    color: black;
    text-align: right;
    width: 100%;
}

.info-center {
    color: black;
    text-align: center;
    width: 100%;
    padding-top: 0.3rem;
    border-top: 1px solid rgb(146,168,133);
}

@media (max-width: 600px) {
    * {
        font-size: 2vw;
      }
}