* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}


body {
    background-color: black;
    margin: 0;
    padding: 0;
}

#background {
    height: 100%;
    width: 100%;
    position: fixed;
    opacity: 0.5;
    z-index: 2;
    object-fit: cover;
}

 
.navbar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    background-color: #033c59;
    border: 10px solid rgb(1, 4, 43);
    border-radius: 15px;
    padding: 5px 20px;
    margin: 15px;
    position: relative;
    z-index: 5;
}

.websitename {
    display: inline;
    margin-right: 5px;
    font-family: "Gill Sans Extrabold", sans-serif;
    z-index: 4;
}

.moba, .legends {
    display: inline;
}

.fiv, .V, .five, .exc {
    display: inline;
    text-align: center;
}

.mode {
    text-align: center;
}

.mode span {
    font-size: 20px;
    margin: 0 2px;
}

.moba {
    color: rgb(244, 161, 7);
}

.legends {
    color: rgb(103, 173, 12);
}

.fiv {
    color: green;
}

.five {
    color: orange;
}

.V {
    color: white;
}

.exc {
    color: yellow;
}

.logoimage {
    width: 150px;
    height: 100px;
    border: 7px solid grey;
    border-radius: 5px;
    margin-left: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.contact > button,
.signup > button,
.signin > button {
    border-radius: 25px;
    border: 5px solid #130843;
    height: 50px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(22, 138, 142);
    font-size: 15px;
    font-family: sans-serif;
    cursor: pointer;
    margin: 0;
    z-index: 5;
}

 
.grid {
    display: grid;
    grid-template-columns: repeat(3, .75fr);
    gap: 20px;
    padding: 40px;
    align-items: start;   
    z-index: 5;
}

 
.card {
    background-color: #033c59;
    border: 7px solid rgb(1, 4, 43);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    z-index: 5;
    
}

.card:hover
{
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(5, 248, 232, 0.84);
    border-color:  rgb(6, 101, 117);
}

.card > button {
    margin-top: auto;     
}

.card > button:hover {
    transform: scale(1.03);
    background-color: #6fbaff;
    box-shadow: 0 6px 22px rgb(0, 132, 255);

}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.card-content img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    object-position: top;   
    border-radius: 8px;
    margin-bottom: 12px;
}

.card ul {
    color: #c8e6f5;
    padding-left: 20px;
    margin: 8px 0;
}

.card pre {
    margin: 8px 0 4px;
    white-space: pre-wrap;
}

.card h2 {
    color: rgb(244, 161, 7);
    margin: 0;
}

.card h3 {
    color: rgb(103, 173, 12);
    margin: 0;
}

.card > button {
    margin-top: 14px;
    padding: 10px 24px;
    background-color: rgb(22, 138, 142);
    border: 3px solid #130843;
    border-radius: 20px;
    color: white;
    font-size: 14px;
    font-family: sans-serif;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
}

.card > button:hover {
    background-color: rgb(15, 100, 104);
}

 
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    color: white;
    border-top: 3px solid #033c59;
    margin-top: 20px;
}


.map01 {
    display:block;
    border: 10px solid rgb(7, 54, 7);
    margin: 0px;
    padding: 0px;
    z-index: 5;

}

.footer-content {
    text-align: center;
    color: #c8e6f5;
    font-size: 14px;
    z-index:5;
}



