body{
    background-color: black;
    background-image: url('../images/Rectangle.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Rectangle.jpg');
    background-size: cover; /* Ensures it covers the entire screen */
    background-position: center; /* Center the image */
    z-index: -1; /* Keeps background behind the content */
}

header {
    background-color: #6A36FF;
    padding: 20px;
    margin: -8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}


.text{
    color: white;
    font-size: 15px;
    margin-top: 50px;
    text-align: center;
}

.header-title {
    margin: 0;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.menu-icon {
    display: none;
    background: none;
    border: none;
    font-size: 2em;
    color: white;
    cursor: pointer;
}

/* Menu hidden by default on smaller screens */
.header-buttons {
    flex-wrap: wrap;
    justify-content: flex-end;
    display: flex;
}

/* Mobile Menu: Hidden by default */
.header-buttons.hide {
    display: none;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.title{
    display: flex;
    color: white;
    align-items: center;
    justify-content: center;
}

.text{
    color: white;
    font-size: 15px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}

input[type=text], select {
    padding: 10px 20px;
    margin: 17px 0;
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

input[type=submit] {
    width: 100%;
    background-color: #ffffff;
    color: hwb(185 20% 45%);
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
input[type=submit]:hover {
    background-color: #2dd5ff;
 }

.header-title {
    margin: 0;
}

.header-buttons {
    display: flex;
    gap: 10px;
}
.gameinfo{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    color: white;
    margin: 10px;
}
.text1{
    color: white;
    font-size: 15px;
    margin: 20px;
    text-align: center;
    border: solid 3px lightskyblue;
}
.text2{
    color: white;
    font-size: 15px;
    margin: 20px;
    text-align: center;
    border: solid 3px lightskyblue;
}
@font-face {
    font-family: 'SupremeSpike';
    src: url('/SupremeSpike-KVO8D.otf');
}

body {
    font-family: 'SupremeSpike', sans-serif;
}


  .btn {
    position: relative;
    text-decoration: none;
    padding: 10px 50px;
    margin: 15px;
    font-family: SupremeSpike;
    font-size: 1.2em;
    font-weight: 800;
    font-style: italic;
    color: #171D1C;
    text-shadow: 
     0 0 2px #000,
     0 0 3px #000,
     0 0 2px #000,
     0 0 2px #000,
     0 0 6px #000,;
 
    letter-spacing: 2px;
    cursor: pointer;
    z-index: 1;
    transition: 0.3s ease-in-out;
  }
  
  

    .btn::before {
        position: absolute;
        content: "";
        width: 200px;
        height: 45px;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%) skewX(-15deg);
        background-color: #EFE9F4;
        border: 3px solid #b9b3b3;
        transition: 0.3s ease-in-out;
        z-index: -1;
    }
    
    .btn::after{
        position: absolute;
        content: "";
        width: 210px;
        height: 50px;
        top: 50%;
        left: 52%;
       
        transform: translateX(-50%) translateY(-50%) skewX(-15deg); 
        background-image: repeating-linear-gradient(
            0deg,
            transparent,
            transparent 5px,
            rgba(22, 186, 197, 2.777) 5px,
            rgb(106, 54, 255, 0.84) 60px  
            
        );
        color: rgb(106, 54, 255);
        transition: 0,3s ease-in-out;
        z-index: -2;                                                            ;
    }

    
    .btn:hover::before{
        background-color: rgb(177, 176, 178);
        color: #5358ee;
        border: 3px solide green;

    }

    .btn:hover::after{
        height: 60px;
        top: 72%;
        left: 53%;
        background-image: repeating-linear-gradient(
            0deg,
            transparent,
            transparent 5px,
           
        );
    }
    .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropbtn {
        position: relative;
        text-decoration: none;
        padding: 10px 50px;
        margin: 15px;
        font-family: SupremeSpike;
        font-size: 1.2em;
        font-weight: 800;
        font-style: italic;
        color: #171D1C;
        text-shadow: 
         0 0 2px #000,
         0 0 3px #000,
         0 0 2px #000,
         0 0 2px #000,
         0 0 6px #000,;
     
        letter-spacing: 2px;
        cursor: pointer;
        z-index: 1;
        transition: 0.3s ease-in-out;
    }

    .dropbtn::before {
        position: absolute;
        content: "";
        width: 200px;
        height: 45px;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%) skewX(-15deg);
        background-color: #EFE9F4;
        border: 3px solid #b9b3b3;
        transition: 0.3s ease-in-out;
        z-index: -1;
    }
    
    .dropbtn::after{
        position: absolute;
        content: "";
        width: 210px;
        height: 50px;
        top: 50%;
        left: 52%;
       
        transform: translateX(-50%) translateY(-50%) skewX(-15deg); 
        background-image: repeating-linear-gradient(
            0deg,
            transparent,
            transparent 5px,
            rgba(22, 186, 197, 2.777) 5px,
            rgb(106, 54, 255, 0.84) 60px  
            
        );
        color: rgb(106, 54, 255);
        transition: 0,3s ease-in-out;
        z-index: -2;                                                            ;
    }

    
    .dropbtn:hover::before{
        background-color: rgb(177, 176, 178);
        color: #5358ee;
        border: 3px solide green;

    }

    .dropbtn:hover::after{
        height: 60px;
        top: 72%;
        left: 53%;
        background-image: repeating-linear-gradient(
            0deg,
            transparent,
            transparent 5px,
           
        );
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
    }

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        transition: background-color 0.3s ease-in-out;
    }

    .dropdown-content a:hover {
        background-color: #f1f1f1;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

     /* Add styles for the favicon */
     link[rel="icon"] {
        display: none;
    }

    @media (max-width: 768px) {
            
            body::before {
                background-size: 150%; /* Make the image smaller */
                background-position: center; /* Keep the image centered */
                background-size: contain;
            }

            .menu-icon {
                display: block;
            }
        
            .header-buttons {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                right: 0;
                background-color: #6A36FF;
                width: 100%;
                z-index: 1000;
            }
        
            .header-buttons.show {
                display: flex;
                position: relative;
                right: 25px;
            }
        
            .btn, .dropbtn {
                padding: 15px;
                text-align: center;
                width: 100%;
                border-bottom: 1px solid white;
            }
        
        
        header {
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 120%;
        }
    
        .header-title {
            margin-bottom: 10px;
        }
    
        .header-buttons {
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }
    
        .btn, .dropbtn {
            font-size: 1em;
            padding: 8px 15px;
        }
    
        .image-container {
            margin: 20px auto;
        }

        .image-container img {
            width: 120% !important; /* Increase the width to make the image larger */
            max-width: none; /* Allow the image to exceed its container's max size */
            height: auto; /* Maintain the aspect ratio */
            transform: rotate(90deg); /* Rotate the image */
            margin: 0 auto; /* Center the image horizontally */
            position: relative;
            top: 50px;
            right: -20px;
    }
        }
    
        .responsive-image {
            width: 90%;
        }
    
        .text {
            font-size: 0.8em;
            padding: 5px;
        }
        
    
    @media (max-width: 480px) {

        body {
            background-size: 150%; /* Zoom in the background for smaller screens */
            background-position: center top; /* Center it horizontally, align it to the top */
        }

        .header-buttons {
            flex-direction: column;
            gap: 5px;
        }
    
        .btn, .dropbtn {
            width: 100%;
            text-align: center;
            padding: 10px;
        }
    
        .text {
            font-size: 0.8em;
            margin-left: 50px;
            margin-top: 90px;
        }
    }