
body {
    background-color: #f0f8f0;
    color: #333333;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

#gamecontainer{
    text-align: center;
    margin: 20px auto;
}

#gameboard{
    border: 3px solid #2e8b57;
    background-color: #90ee90;
}

#scoretext{
    font-family: "Permanent Marker", cursive;
    font-size: 100px;
    color: #2e8b57;
    margin: 10px 0;
}

#resetbutton{
    font-family: "Permanent Marker", cursive;
    font-size: 22px;
    width: 100px;
    height: 50px;
    border: 4px solid #e74c3c;
    border-radius: 15px;
    cursor: pointer;
    background-color: #3498db;
    color: white;
    transition: all 0.3s ease;
}

.nav-bar {
    text-align: center;
    padding: 15px;
    background-color: #2e8b57;
    margin-bottom: 20px;
}

.nav-link {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    padding: 10px 20px;
    font-family: "Permanent Marker", cursive;
    font-size: 18px;
    border: 2px solid white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: white;
    color: #2e8b57;
}

.game-container {
    padding: 20px;
    margin: 0 auto;
    max-width: 600px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.score {
    font-weight: bold;
    text-decoration: underline;
}

.btn-reset:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

.btn-reset:active {
    background-color: #1c638e;
    transform: scale(0.95);
}

.media-section {
    margin: 30px auto;
    padding: 20px;
    border: 2px dashed #7f8c8d;
    max-width: 600px;
    text-align: center;
    background-color: white;
    border-radius: 10px;
}

.preview-image {
    width: 400px;
    height: 300px;
    border: 2px solid #34495e;
    margin: 10px;
    object-fit: cover;
    border-radius: 8px;
}

.tutorial-video {
    width: 500px;
    height: 200px;  
    border: 3px solid #9b59b6;
    border-radius: 8px;
    margin: 10px;
}

.info-section {
    margin: 30px auto;
    max-width: 600px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.score-list {
    font-family: Arial, sans-serif;
    color: #333333;
    text-align: left;
    margin: 15px 0;
}

.controls-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.controls-table th,
.controls-table td {
    border: 2px solid #2e8b57;
    padding: 12px;
    text-align: center;
}

.controls-table th {
    background-color: #2e8b57;
    color: white;
    font-weight: bold;
}

.controls-table tr:nth-child(even) {
    background-color: #f0f8f0;
}

h1 {
    margin-bottom: 10px;
    padding: 10px;
    color: #2e8b57;
    text-align: center;
}

h2 {
    margin: 5px 0 20px 0;
    padding: 5px;
    color: #7f8c8d;
    text-align: center;
}

h3 {
    margin: 15px 0;
    padding: 8px;
    color: #2e8b57;
    border-bottom: 2px solid #bdc3c7;
}


p {
    color: #333333;
    line-height: 1.6;
}

strong {
    color: #e74c3c;
}

u {
    color: #f39c12;
}