@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Orbitron:wght@400..900&display=swap');
body {
    background-image: linear-gradient(137deg, blue, green);
    height: 100vh;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}
h1 {
    color: #f5f5f5;
}
#welcome {
    color: #00ff00;
    font-family: 'Orbitron', sans-serif;
}
#messages {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 10px;
    max-height: 60vh;
    overflow-y: auto;
    margin: 20px auto;
    width: 80%;
    height: 345px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#messageForm {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

#messageInput {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    height: 30px;
}

button {
    padding: 10px 20px;
    margin-left: 10px;
    background-color: #00ff00;
    border: none;
    border-radius: 4px;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Montserrat';
    transition: background-color 0.7s;
}

button:hover {
    background-color: #00cc00;
}
#admin-panel {
    width: 35%;
    height: 180px;
    background-color: #ccc;
    border-radius: 12px;
    left: 35%;
    position: absolute;
    top: 85%;
}
#admin-panel h1, h2 {
    color: #ff0000b8;
}
#admin-panel a {
    text-decoration: none;
    color: #ff0000;
}