        html{
            background-color: lightgray;
        }
        #index-body{
            text-align:center;
        }
        #index-body img{
            width:100%;
        }
        #index-body .index-container-1 img{
            width:80%;
        }
        .index-container-1{
            width:100%;
            border-bottom: 3px solid black;
        }
        body {
            margin: 0;
            font-family: 'Montserrat', sans-serif; /* Apply the Montserrat font */
            background-size: cover;
            background-color: white;
            position: relative;
            max-width: 1280px;/* good for limiting the size of the body of the mesage to a reasonable level*/
            margin: 0 auto;
            border:3px solid black;     
            border-radius: 3px;
            box-shadow: 0px 0px 3px 2px black            
        }
        .navbar {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100px;
            background-color: #333;
            color: white;
            border-bottom: 3px solid black;
        }
        .WWE{
            position:absolute;
            width:100px;
            height:auto;
            left: 170px;
            top:0px;
        }
        .WWEDisclaimer {
            font-size: xx-small;
        }
        .navbar .nav-item {
            margin: 0 20px;
            text-transform: uppercase; /* Make text all uppercase */
        }
        .navbar .nav-item a {
            color: white;
            text-decoration: none;
        }
        .navbar .nav-item a:hover {
            color: red;
        }
        .ring-container {
            width: 200px;
            height: 200px;
            position: relative;
            pointer-events: none;
        }
        #overlay-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
           /* pointer-events: none; /* Allow clicks to pass through */
            text-align: center; /* Center the image */
            width: 100%; /* Ensure the container spans the full width */
            z-index: 1;
        }
        #overlay {
            max-width: 100px; /* Set the maximum width of the image to 100px */
        }
        .menu {
            display: none;
        }
        #ring-container-left{
            position: absolute;
            left:10px;
        }
        #ring-container-right{
            position: absolute;
            left:10px;
        }
        .sign-in {
            cursor: pointer;
            width: 30px;
            height: 30px;
            background: transparent;
            border: none;
            padding: 0;
            z-index: 10;
            position: absolute;
            top: 20px;
            left: 10px;
            margin: 0 20px;
            text-transform: uppercase; 
            font-size: x-large;
        }
        .sign-in a{
            min-width: 35px;
            color: white;
            text-decoration: none;
        }
        .sign-in a:hover{
            color:red;
        }
        .icon {
            position: absolute;
            right: 10px;
            font-size: x-large;
        }
        /*FOOTER*/

        footer {
            background-color: #333;
            color: #fff;
            padding: 20px 0;
            width: 100%;
          }
          .footer-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            text-align: center;
          }
          .footer-column {
            flex: 1;
            margin: 10px;
          }
          .footer-column h4 {
            margin-bottom: 10px;
          }
          .footer-column ul {
            list-style: none;
            padding: 0;
          }
          .footer-column ul li {
            margin-bottom: 5px;
          }
          .footer-column ul li a, .footer-column a {
            color: #fff;
            text-decoration: none;
          }
          .footer-column ul li a:hover, .footer-column a:hover {
            text-decoration: underline;
          }
          .social-media {
            display: flex;
            justify-content: center;
            text-align: center;
          }
          .social-media li {
            margin: 0px 5px;
          }
          .footer-bottom {
            text-align: center;
            margin-top: 20px;
          }

/*Main Section 1*/
        h1,h2,h3 {
             margin:0;
        }
        .wrestler-bold {
            font-size: 24px;
            animation: slideIn-right 1s ease-out, colorIn-white 1s ease-out;
            text-shadow: 2px 2px 4px #000000; /* Adds a shadow for extra impact */
        }
        .wrestler-text {
            padding:0;
            font-family: 'Rubik', sans-serif;
            font-size: 32px;
            color: crimson; /* Bright red color */
            text-shadow: 2px 2px 4px #000000; /* Adds a shadow for extra impact */
            text-align: center;
            animation: slideIn-left 1s ease-out, colorIn-red 1s ease-out;
        }
        .wlp-text {
            padding:0;
            font-family: 'Rubik', sans-serif;
            font-size: calc(.65rem + 3vw);
            color: yellow; /* Bright red color */
            text-shadow: 2px 2px 4px #000000; /* Adds a shadow for extra impact */
        }
        .wrestler-bold {
            font-size: 40px;
        }
        @keyframes slideIn-left {
            from {
                transform: translateX(-100%);
            }
            to {
                transform: translateX(0);
            }
        }
        @keyframes colorIn-red {
            from {
                color: transparent;
            }
            to {
                color: crimson; /* Your desired color */
            }
        }
        @keyframes slideIn-right {
            from {
                transform: translateX(200%);
            }
            to {
                transform: translateX(0);
            }
        }
        @keyframes colorIn-white {
            from {
                color: transparent;
            }
            to {
                color: white; /* Your desired color */
            }
        }
        @media (min-width: 1201px) {
            .sign-in{
                display:none;
            }
            .menu{
                display:none;
            }
            .hamburger {
                display:none;
            }
            .hamburger div {
                display:none;
            }
            .hamburger.active + .menu {
                display:none;
            }
            .navbar {
               padding-left: 300px;
            }
        }
        @media (max-width: 1200px) {
            .navbar {
                display: flex;
                justify-content: center;
                align-items: center;
            }
            .menu{
                z-index:45;
                flex-direction: column;
                position: absolute;
                top: 70px;
                right: 0px;
                background-color: white;
                border: 1px solid black;
                border-radius: 0px 0px 5px 5px;
                overflow: hidden;
            }
            .hamburger {
                cursor: pointer;
                display: flex;
                flex-direction: column;
                justify-content: space-around;
                width: 30px;
                height: 30px;
                background: transparent;
                border: none;
                padding: 0;
                z-index: 10;
                position: absolute;
                top: 20px;
                right: 45px;
            }
            .hamburger div {
                width: 30px;
                height: 3px;
                background-color: white;
                border-radius: 7px;
                transition: all 0.2s linear;
                position: relative;
                transform-origin: 1px;
            }
            .hamburger.active div:nth-child(1) {
                transform: rotate(45deg) translate(2px, -5px);
            }
            .hamburger.active div:nth-child(2) {
                display: none;
                transform: translateX(20px);
            }
            .hamburger.active div:nth-child(3) {
                transform: rotate(-45deg) translate(2px, 5px);
            }
            .hamburger.active + .menu {
                display: flex;
            }
            #ring-container-right{
                display:none;
            }
            #ring-container-left{
                display:flex;
            }
            .navbar .nav-item{
                display:none;
            }
            .menu .mobile-item {
                text-align: center;
                padding: 20px 50px;
            }
            .menu a .mobile-item{
                color: black;
                text-decoration: none;
            }
            .menu a{
                text-decoration: none;
            }
            .menu .mobile-item:hover,
            .menu  a .mobile-item:hover{
                background-color: #575757;
                color: white;
            }
            .underlay.active{
                position:absolute;
                top:70px;
                z-index:9;
                background-color:rgba(0, 0, 0, 0.6);
                width:100%;
                height:calc(100% - 70px);
            }
        }

        #sign-in, #sign-up{
            text-align:center;
            font-size:small;
        }
        .sign-in-iframe{
            width: 50%; 
            height: 925px;
            text-decoration:none;
            border:none;
        }
        .sign-up-iframe{
            border: 5px solid black;
            width:70%;
            height: 1000px;
            font-size: small;
        }
        #sign-in p a, #sign-up p a{
            text-decoration: none;
            color:black;
            font-size: medium;
            font-weight: 300;
        }
        #sign-in p a:hover, #sign-up p a:hover{
            text-decoration: none;
            color:red;
        }

        @media(max-width:1200px){
            .sign-up-iframe{
                border:none;
                border-top: 3px solid black;
                width:100%;
            }
            .sign-in-iframe, .sign-up-iframe{
                width: 100%;
            }
        }