@charset "utf-8";

html, body {
    height: 100%;
    margin: 0;
    font-size: 11px;
    color: white;
    font: Arial;
    background: linear-gradient(136deg, #0a2438, #1b3b57, #2c5476, #3d6d95, #4e86b4, #5f9fd3, #70b8f2);
    background-size: 200% 200%;
    animation: gradientBackground 15s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

@keyframes gradientBackground {
    0% { background-position: 0% 50%; }
    60% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h1 {
    color: rgb(0, 255, 242);
    font: Arial;
    font-size: 25px;
}

h2 {
    color: rgb(0, 255, 242);
    font: Arial;
    font-size: 12px;
}

#statusMessage {
    color: rgb(0, 255, 242);
    font: Arial;
    font-size: 30px;
}

table {
    width: 100%;
    table-layout: fixed;
    word-break: break-all;
}

div {
    max-width: 100%;
    text-align: center;
}

th {
    text-align: center;
}

table, th, td {
    border: 1px solid black;
}

img {
    max-width: 60%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 40px; /* Rounded edges */
    box-shadow: 0px 7px 14px rgba(0, 0, 0, 0.3); /* Shadow effect */
}

button {
    margin: 4px;
}

#code-block {
    background-color: #eee;
    border: 1px solid #999;
    display: block;
    padding: 20px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    overflow-x: auto;
    white-space: nowrap;
}

#profilePictureDiv {
    text-align: center;
}

#profileImageDiv {
    height: 100px;
    width: 100px;
}

.textLeft {
    text-align: left;
}

.buttonGroup {
    position: relative;
    top: 20px;
}

.hidden {
    display: none;
}
