
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100vh;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
}

.card {
    font-family: 'Siffon', sans-serif;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 0px;
    padding: 2px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    width: auto;
    max-width: 600px;
    height: auto;
    background: #12c2e9;
    /* background: -webkit-linear-gradient(to right, #f64f59, #c471ed, #12c2e9);
    background: linear-gradient(to right, #f64f59, #c471ed, #12c2e9); */
    background-color: rgba(199, 187, 187, 0.5) !important;
    position: absolute;
    left: 15px;
    bottom: 20vh;
    z-index: 1000; 
    color:white
}

.right-container {
    background: #000000;
    /* background: -webkit-linear-gradient(to left, #434343, #000000);
    background: linear-gradient(to left, #434343, #000000); */
    background-color: rgba(199, 187, 187, 0.5) !important;
    flex-grow: 1; /* Ensures the right-container expands evenly */
    padding: 1px;
    border-radius: 0px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal;
    color: white;
}

h2, h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.gradienttext {
    color: white;
    font-size: 1.5rem;
}

p, td {
    font-size: 1rem;
    color: aliceblue;
    padding: 3px;
}

td:first-child {
    font-weight: bold;
    width: 30%; 
}

td:last-child {
    width: 70%; 
}

table {
    width: 100%;
    border-collapse: collapse;
}

/* Media Queries */
@media (max-width: 2048px) {
    td:first-child {
        font-weight: bold;
        width: 25%; 
    }
    
    td:last-child {
        width: 75%; 
    }
    .card {
        width: 31%;
    }

    h2, h3 {
        font-size: 1.1rem;
    }

    .gradienttext {
        font-size: 1.5rem;
    }

    td {
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .card {
        width: 60%;
    }
    h2, h3 {
        font-size: 1.7rem;
    }

    .gradienttext {
        font-size: 1.7rem;
    }

    td {
        font-size: 1.2rem;
    }
}

@media (max-width: 930px) {
    .card {
        width: 60%;
    }
    h2, h3 {
        font-size: 1.7rem;
    }

    .gradienttext {
        font-size: 1.7rem;
    }

    td {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .card {
        width: 60%;
    }

    h2, h3 {
        font-size: 1.5rem;
    }

    .gradienttext {
        font-size: 1.5rem;
    }

    td {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    td:first-child {
        font-weight: bold;
        width: 30%; 
    }
    
    td:last-child {
        width: 70%; 
    }
    .card {
        width: 85%;
        bottom: 18%;
        left:10px;
    }

    h2, h3 {
        font-size: 1.5rem;
    }

    .gradienttext {
        font-size: 1.1rem;
    }

    td {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    td:first-child {
        font-weight: bold;
        width: 30%; 
    }
    
    td:last-child {
        width: 70%; 
    }
    .card {
        width: 80%;
        bottom: 15%;
        left:10px;
    }

    h2, h3 {
        font-size: 1.1rem;
    }

    .gradienttext {
        font-size: 1.1rem;
    }

    td {
        font-size: 0.8rem;
    }
}

/* Credits Styling */
.credit {
    color: #fff;
    text-align: center;
    margin-top: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.credit a {
    text-decoration: none;
    color: #fff;
    font-weight: 800;
}
