

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    /*display: flex;*/
    /*justify-content: center;*/
    /*flex-direction: row;*/
}

.container {
    width: 600px;
    /* margin: 50px auto; */
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    position: relative;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(#0800ff, #8e00e7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.input-container {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ededed;
    border-radius: 3px;
    font-size: 18px;
}

button {
    /* padding: 10px 20px; */
    background-color: #ffffff;
    border: none;
    color: #ffffff;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: -webkit-linear-gradient(#0800ff, #8e00e7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    font-weight: 900;
    height: 50px;
    /*width: 100%;*/
    border: 2px solid #8e00e7;
    width: 150px;
    float: right;
}

button:hover {
    border: 0px solid #8e00e7;
}

button:hover {
    background-color: #0056b3;
}

#result {
    margin-top: 20px;
}

#resultContainer {
    display: none;
}
#silverresultContainer {
    display: none;
}


.align-right {
    text-align: right;
}

.align-center {
    text-align: center;
}

.align-left {
    text-align: left;
}

.bold {
    font-weight: bold;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc;
    table-layout: fixed;
}

th,
td {
    padding: 8px;
    border-bottom: 1px solid #ccc;
    text-align: center;
}

/*th {*/
/*    background-color: #f2f2f2;*/
/*}*/

.trgold{
    background: -webkit-linear-gradient(#f3c451, #fefebc);
     color: black;
}
.trsilver{
    background: -webkit-linear-gradient(#ffffff, #8d8d8d);
    color: black;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

.topcard {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    position: relative;
}

.splitlang {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.containerwrapper{
    
    display: flex;
    justify-content: center;
    flex-direction: row;
}
.aboutcontainer{
    padding: 15px;
        display: flex;
    justify-content: center;
}
.ab{
        width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}
#gold{
    background: -webkit-linear-gradient(#8c5817, #fccc5c);
     -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#silver{
    background: -webkit-linear-gradient(#d5d5d5, #4d4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gold{
    width: 100px;
    object-fit: contain;
    position: absolute;
    left: 0;
    bottom: 0px;
    transform: translate(-0%, -0%);
}
.silver{
    width: 100px;
    object-fit: contain;
    position: absolute;
    left: 0;
    bottom: 0px;
    transform: translate(-0%, -0%);
    filter: grayscale(1);
}
@media (max-width: 500px) { /* adjust this breakpoint to your desired screen size */
body{
    
}
.container {
    width: auto;
    
}
.containerwrapper{
    flex-direction: column;
}
.ab{
    width: 90%;
}
}
