* {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f0f4f8;
    line-height: 1.6;
    padding: 20px;
}

a {
    color: rgb(5, 5, 189);
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    color: rgb(10, 10, 237);
    font-weight: bold;
    text-decoration: underline;
}

.container {
    max-width: 900px;
    margin: auto;
    background-color: white;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.centered {
    text-align: center;
    position: relative;
}

.left {
    text-align: left;
    position: relative;
}

.header {
    position: relative;
    gap: 10px; /* Optional spacing between image and text */
    text-align: center;
    position: relative;
}

.cube-images {
    padding: 80px;
}

.flag-container {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 10px;
}

.logo {
    width: 150px !important;
    height: 150px !important;
}

.pay-button {
    display: inline-block;
    padding: 1px 10px;
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
}

.pay-button:hover {
    color: white;
}

#welcome {
    color: rgb(64, 91, 246);
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    margin: 0;
    line-height: 60px;
}

#email {
    color: blue
}

#products {
    display: flex;
    justify-content: center;  /* center the columns horizontally */
    gap: 100px;               /* space between the columns */
    margin-top: 20px;
}