html,
body {
    background-color: #000000;
    background-repeat: repeat;
}

* {
    margin: 0;
    padding: 0;
}

a {
    color: #D19717;
    text-decoration: none;
}


.tabs {
    padding: 5px;
    float: left;
    margin: 5px;
    cursor: pointer;
    border: 2px solid transparent;
}


.tabs-highlighted {
    border: 2px solid #D19717;
    font-weight: 600;
}

.tabcontent {
    margin-left: 10px;
}

a:hover {
    color: #D19717;
    text-decoration: underline;
    cursor: pointer;
}

#content {
    margin-top: 65px;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f9f9f9;
}

.image-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

#displayImage {
    width: 250px;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    font-size: 18px;
    padding: 8px 12px;
    cursor: pointer;
    border: none;
    background-color: #007BFF;
    color: white;
    border-radius: 4px;
}

button:hover {
    background-color: #0056b3;
}

input[type=text] {
    padding: 8px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 4px;
}