html {
  scroll-behavior: smooth;
}

body {
    background: #232D35 url('/images/bgscene.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #CCCCCC;
    font: 12pt Verdana, Geneva, Lucida, 'Lucida Grande', Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    height: 100vh;
    //margin: 10px;
}

.text{
	color: silver;
	font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
	font-size: 14px;
}

.login-link {
    display: block;
    margin-top: 10px;
    text-align: center;
    color: silver;
    font-weight: bold;
    text-decoration: none;
}

.login-link:hover {
    color: #FFFF;
}

.register-link {
    display: block;
    margin-top: 10px;
    text-align: center;
    color: silver;
    font-weight: bold;
    text-decoration: none;
}

.register-link:hover {
    color: #FFFF;
}
a.banner-link {
    display: block;
    max-width: 20%;
    height: auto;
    margin: 0 auto; /* Center the image */
    text-decoration: none; /* Ensure no underline or additional styling is applied */
}

.banner {
    display: block;
    max-width: 100%; /* Ensure the image scales correctly */
    height: auto; /* Maintain aspect ratio */
}

img.screenshot{
	width: 75%;
}

.login-container, .register-container {
    //background: #333;
    background-color: rgba(24, 27, 22, 0.8);
    font-variant: small-caps;
    font-weight: bold;
    padding: 20px;
    //border-radius: 8px;
    border: 5px silver;
    border-style: none ridge ridge;
    border-top-right-radius: 100px;
    border-top-left-radius: 100px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 30%;
}

.login-container h2, .register-container h2 {
    margin-top: 0;
    color: #FFF;
}

.login-container label, .register-container label {
    display: block;
    margin-bottom: 8px;
    color: #FFF;
}

.login-container input[type="text"], .login-container input[type="password"],
.register-container input[type="text"], .register-container input[type="password"],
.register-container input[type="email"], .register-container select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #555;
    border-radius: 4px;
    background: #444;
    color: #FFF;
}

.login-container input[type="submit"], .register-container input[type="submit"] {
    width: 100%;
    padding: 10px;
    background: #556B2F;
    font-variant: small-caps;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    color: #FFF;
    font-size: 16px;
    cursor: pointer;
}

.login-container input[type="submit"]:hover, .register-container input[type="submit"]:hover {
    background: #6B8E23;
    font-variant: small-caps;
    font-weight: bold;
}

.error {
    color: #FF0000;
    margin-bottom: 10px;
    
}.tabs {
    display: flex;
    justify-content: space-around;
    margin-left: 40px;
}

.tab {
    text-decoration: none; /* Remove underline from all tab links */
    background-color: #181b16;
    color: silver;
    font-variant: small-caps;
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    border: 5px silver;
    border-style: none ridge ridge;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;;
    //display: flex;
    //align-items: flex-end; /* Add this line */
}

h2 { 
    font-variant: small-caps;  
}

.tabs :hover {
    background-color: white;
    color: #181b16;
}

.tabs .active {
    background-color: white;
    color: #181b16;
}

.tab-container {
    width: 30%;
}

.tab-content {
    background-color: rgba(24, 27, 22, 0.8);
    //padding: 20px;
    //border-radius: 8px;
    //margin-left: -10px;
    margin-right: -20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 400px;
    text-align: center;
    border: 5px silver;
    border-style: none ridge ridge;
    border-top-right-radius: 100px;
    border-top-left-radius: 100px;
    overflow: scroll;
}

.play-now-button {
    display: block;
    width: 200px;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #556B2F;
    color: white;
    text-align: center;
    font-variant: small-caps;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
}

.play-now-button:hover {
    background-color: #6B8E23;
}

@media only screen and (max-width: 768px) {
    .tabs {
        display: none;
    }
    .tab-select {
        display: block;
        margin-left: 30px;
        display: flex;
        justify-content: space-around;
        margin-left: 40px;
    }

    .tab-container {
        width: 100%;
    }
}

.tab-select {
    display: none;
    width: 80%;
    padding: 10px;
    font-size: 16px;
    border-radius: 8px;
    background-color: #181b16; /* Background color */
    color: silver; /* Text color */
    font-variant: small-caps; /* Small-caps text */
    font-weight: bold;
    border: 2px solid silver; /* Border color */
}

.tab-select option {
    background-color: #181b16; /* Option background color */
    color: silver; /* Option text color */
    font-variant: small-caps; /* Option small-caps text */
    font-weight: bold;
}
