/* General Page Styling */

body {

    font-family: Arial, sans-serif;
    background-color: #3b0000;
    margin: 0;
    color: #333;

}


/* Header */

header {

    background: linear-gradient(#ff1a1a, #990000);
    color: white;
    text-align: center;
    padding: 50px;

    border-bottom: 8px solid #660000;

}


header h1 {

    font-size: 40px;
    text-shadow: 2px 2px #660000;

}


header p {

    font-size: 20px;

}



/* Main Sections */

section {

    background: #fff5f5;

    width: 85%;

    margin: 30px auto;

    padding: 30px;

    border-radius: 15px;

    box-shadow: 0px 5px 15px #220000;

}




h2 {

    text-align: center;

    color: #b30000;

}



/* Monty Mole Section */

.intro {

    text-align: center;

}



.intro img {

    width: 220px;

    border-radius: 15px;

    border: 5px solid #cc0000;

}



/* Tables */

table {

    width: 95%;

    margin: auto;

    border-collapse: collapse;

}



caption {

    font-size: 25px;

    font-weight: bold;

    color: #990000;

    padding: 15px;

}



th {

    background: #cc0000;

    color: white;

    padding: 15px;

}



td {

    padding: 15px;

    text-align: center;

    border: 2px solid #990000;

    background: white;

}



tr:hover td {

    background: #ffe0e0;

}



td img {

    width: 120px;

    border-radius: 15px;

    border: 3px solid #cc0000;

}



/* Form Styling */

form {

    background: #ffe6e6;

    border: 3px solid #cc0000;

    padding: 25px;

    border-radius: 15px;

}



label {

    font-weight: bold;

}



input, select, textarea {

    padding: 10px;

    margin: 5px;

    border: 2px solid #cc0000;

    border-radius: 5px;

}



input[type="color"] {

    height: 40px;

    width: 60px;

}



meter {

    width: 250px;

}



input[type="submit"] {

    background: #cc0000;

    color: white;

    border: none;

    padding: 12px 25px;

    cursor: pointer;

    border-radius: 8px;

    font-size: 16px;

}



input[type="submit"]:hover {

    background: #800000;

}



/* Tic Tac Toe */

.game {

    width: 300px;

}



.game td {

    height: 80px;

    font-size: 40px;

    font-weight: bold;

    background: white;

}



.game td:hover {

    background: #ffcccc;

}



/* Footer */

footer {

    text-align: center;

    color: white;

    padding: 20px;

}



/* Mobile Responsive Design */

@media(max-width:700px) {


    section {

        width: 90%;

        padding: 20px;

    }


    table {

        font-size: 12px;

    }


    td img {

        width: 70px;

    }


    header h1 {

        font-size: 30px;

    }

}