
.section-1 {
    /* Make horizontal */
    display: flex;
    margin: 20px;
    /* Center all vertically */
    align-items: center;
}

.section-1 img {
    width: 50%;
    height: auto;
    border-radius: 10px;
}

.section-1 .text {
    margin: 20px;
}

.section-1 h1 {
    font-size: 2em;
}

#section-1-div {
    background-color: #f00;
    width: 200px;
    height: 200px;
}

a.fill-div {
    display: block;
    width: 100%;
    height: 100%;
}

.section-2 {
    text-align: center;
    padding: 20px;
}

.maps {
    display: flex;
    justify-content: space-around;
    gap: 20px; /* Adjust the gap as needed */
}

.map {
    position: relative;
    width: 30%; /* Adjust the width as needed */
    overflow: hidden;
}

.map-background {
    position: relative;
    width: 100%;
    height: 300px; /* Adjust the height as needed */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark gradient overlay */
}

.map-content {
    position: relative;
    color: #fff;
    /* text-align: center; */
    z-index: 1;
    /* Place at the bottom */
    padding: 20px;
    /* align-items: */
}

.map-content h2 {
    margin: 10px 0;
}

.map-content p {
    margin: 10px 0;
}

.map-content .map-code {
    font-family: monospace;
    font-size: 1.2em;
}

.section-3 {
    display: flex;
    justify-content: center;
    gap: 40px; /* Adjust the gap as needed */
    padding: 20px;
}

.support-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 400px;
}

.support-container .title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    /* text-decoration: italic; */
    font-style: italic;
}

.support-container .subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.support-container .input-group {
    margin-bottom: 20px;
}

.support-container .creator-input {
    width: 81%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.support-container .button {
    width: 48%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.support-container .search-btn {
    background: linear-gradient(120deg, #80d4ff, #aedfff); /* Light blue gradient */
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 12px; /* Rounded corners */
    padding: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Subtle initial shadow */
    font-weight: lighter;
}

.support-container .search-btn:hover {
    background: linear-gradient(120deg, #99e0ff, #cceeff); /* Lighter blue gradient */
    color: #000;
    box-shadow: 0 0 10px #99e0ff, 0 0 20px #80d4ff, 0 0 30px #99e0ff; /* Glowing effect */
    transform: scale(1.05); /* Slight enlargement on hover */
}

.support-container .cancel-btn {
    background: #f4f4f4;
    color: #333;
}

.support-container .cancel-btn:hover {
    background: #ccc;
}

.youtube {
    width: 70px;
    margin-left: -20px;
}

.twitter {
    width: 45px;
    margin-left: 20px;
}

.tiktok {
    width: 60px;
    margin-left: 20px;
    margin-top: -5px;
}

.github {
    width: 50px;
    margin-left: 20px;
}

.socials-container {
    width:auto;
}

.socials {
    display: flex;
    justify-content: center;
}