@import url('https://fonts.googleapis.com/css2?family=Georama:ital,wght@0,100..900;1,100..900&display=swap');
body{
    margin: 0;
    font-family: Georama, sans-serif;
    display: flex;
    flex-direction: column;
    padding-top: 0;
    background-color: #1D212C;
}

header {
    width: 100%;
}

.topnav {
    display: flex;
    list-style-type: none;
    text-align: center;
    background-color: #050E2E;
    padding: 20px 20px;
    padding-left: 0px;
    overflow: hidden;
    margin: 0;
}

.topnav li {
    text-align: center;
    display: inline;
}

.topnav li a {
    font-size: 17px;
    text-align: center;
    padding: 20px 18px;
    color: rgb(246 247 249);
    font-family: Georama, sans-serif;
}

.topnav-active {
    background-color: #FF9232;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav a.active {
    background-color: white;
    color: black;
}
main {
    text-align: center;
    padding: 20px;
}

h1 {
    text-align: center;
    font-size: 36px; 
    margin-top: 20px;
    color: rgb(246 247 249);
}

p {
    text-align: center;
    font-size: 20px;
    color: rgb(246 247 249);
}

.chat-container {
    display: flex;
    flex-direction: column;
    align-items: center; 
    margin-top: 20px;
}

label {
    margin: 10px 0 5px;
    font-size: 18px;
    color: rgb(246 247 249);
}

.yournamething, .textchat {
    font-family: Georama, sans-serif;
    width: 80%; 
    max-width: 600px; 
    padding: 10px; 
    margin-bottom: 10px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 5px; 
    resize: vertical; 
}

.sendbutton {
    padding: 10px 20px; 
    font-size: 18px;
    color: white;
    background-color: #FF9232; 
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
}

.sendbutton:hover {
    background-color: #e67e22; 
}

.textbox {
    width: 80%; 
    max-width: 700px; 
    height: 400px;
    background-color: white; 
    border-radius: 10px; 
    padding: 10px; 
    overflow-y: scroll; 
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}

.back-link {
    font-size: 18px;
    color: #FF9232;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}