*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container{
    width: 100%;
    min-height: 100vh;
    background-color: beige;
    padding: 5px;
}

.platform{
    width: 100%;
    min-height: 150px;
    background-color: olive;
    border-radius: 1px;
}

.heading1{
    color: white;
    font-family: monospace;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 5px;
    letter-spacing: 3px;
    font-size: x-large;
    font-weight: bold;
}

.heading1:hover{
    color: #000;
    text-decoration: none;
}

.heading2{
    color: whitesmoke;
    text-align: center;
    letter-spacing: 1px;
    font-size: 12px;
    padding-bottom: 15px;
}

.heading3{
    color: #000;
    gap: 50px;
    font-family: monospace;
    font-size: 13px;
    display: flex;
    padding-left: 80px;
    padding-bottom: 5px;
}

.heading3 a{
    text-decoration: none;
    color: beige;
}
.website-container{
    background-color: rgb(228, 228, 204);
    margin: 50px ; 
    max-width: 1950px; 
    height: 488px;
    padding: 10px;
    border-radius: 24px;

    display: flex;
    gap: 50px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.image-header img{
    width: 720px;
    height: 420px;
    border-radius: 18px;
}

.menu-content {
    margin-top: 20px;
    width: 100%;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(128, 128, 0, 0.3);
    margin-bottom: 5px;
}

.item-name {
    font-weight: bold;
}

.item-price {
    color: olive;
}

.website-container {
    height: auto;
    min-height: 488px;
}

@media (max-width: 1200px) {
    .website-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .image-header img {
        max-width: 100%;
        height: auto;
    }
    
    .menu-header {
        padding-top: 10px;
    }
}

.menu-div{
    font-family: monospace;
    letter-spacing: 5px;
    font-size: 30px;
    margin: 10px;
    color: olive;

    padding-left: 80px;

}
