/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    line-height: 1.6;
    background-color: #f5f5f5;
}

header {
    color: #fff;
    background-color: #fff;
    padding: 40px 20px;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    z-index: -1;
}

.logo {
    position: absolute;
    margin-left: 20px;
    left: -492px;
    top: -7px;
    z-index: 2; /* Ensure the logo stays above other elements */
}

nav {
    position: relative;
    top: 10px;
    left: 150px; /* Adjust this value based on your design */
    margin-left: 50px; /* Adjust spacing between logo and navigation links */
}

nav a {
    display: inline-block;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #000;
    font-weight: bold;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 9999px;
    padding: 10px 20px;
    margin: 0 10px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-left: 10px; /* Adjust spacing between navigation links */
}

.navigationbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative; /* Add relative positioning */
    display: flex; /* Add Flexbox */
    justify-content: space-between; /* Align items to the start */
    align-items: center; /* Center align items vertically */
    left: -405px;
    top: -9px;
}

.image-container {
    position: relative;
    display: inline-block;
}

.image-container img {
    display: block;
    width: 100%;
    height: auto;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay .container {
    text-align: center;
}



.background-image img {
    display: block;
    width: 100%;
    height: auto;
}


.overlay h1 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
    margin-right: 900px;
}

.button-green {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 9999px;
    text-decoration: none;
    color: #fff;
    background-color: #4CAF50;
    font-size: 18px;
    transition: background-color 0.3s ease;
    margin-right: 900px;
    font-weight: bold;
    z-index: 100;
}

.button-green:hover {
    transform: scale(1.1);
    background-color: #45a049; /* New background color on hover */
}

.buy-skins {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 9999px;
    border: 2px solid white;
    text-decoration: none;
    color: #fff;
    background-color: #000000;
    font-size: 15px;
    transition: background-color 0.3s ease;
    margin-right: px;
    font-weight: bold;
    margin: 0 10px; /* Add margin between the links */
}

.buy-skins:hover {
    color: #000000;
    background-color: #ffffff;
    border: 2px solid black;
}

.sell-skins {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 9999px;
    border: 2px solid white;
    text-decoration: none;
    color: #fff;
    background-color: #000000;
    font-size: 15px;
    transition: background-color 0.3s ease;
    margin-right: 0px;
    font-weight: bold;
    margin: 0 10px; /* Add margin between the links */
}

.sell-skins:hover {
    color: #000000;
    background-color: #ffffff;
    border: 2px solid black;
}

.other-services {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 9999px;
    border: 2px solid white;
    text-decoration: none;
    color: #fff;
    background-color: #000000;
    font-size: 15px;
    transition: background-color 0.3s ease;
    margin-right: 500px;
    font-weight: bold;
    margin: 0 10px; /* Add margin between the links */
}

.other-services:hover {
    color: #000000;
    background-color: #ffffff;
    border: 2px solid black;
}

section {
    padding: 40px 0;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
}

.steps {
    display: flex;
    justify-content: space-around;
}

.step {
    flex: 1;
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.step h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.step p {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
}

.section-are-you-ready {
    padding: 40px 0;
    background-color: #12b09d;
}

.section-are-you-ready div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
}

.section-are-you-ready h2 {
    font-size: 45px;
}

.section-are-you-ready a.button-green {
    margin-top: 50px;
    margin-right: 10px;
}

.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer p {
    margin-bottom: 10px;
}

.footer p:last-child {
    margin-bottom: 0;
}
