body {
    margin: 0;
    margin-top: -140px;
    padding: 0;
    background-color: #faa6d5; /* Corrected color code */
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

    body {
        margin-top: -40px;
    }
    
}

body {
    display: flex;
    margin-top: -140px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    /* Ensure the page takes at least the full height of the viewport */
    margin: 0;
    /* Remove default margin */
    background-color: rgb(252, 250, 252);
    /* Set background color if needed */
}

#location-section {
    margin-top: -20px; /* Adjust the margin-top value as needed */
}


.share-button {
    background-color: #f5f5f5; /* Set background color */
    border: none; /* Remove border */
    border-radius: 50%; /* Make button circular */
    padding: 10px; /* Add padding */
    cursor: pointer; /* Change cursor to pointer on hover */
    display: flex; /* Make button contents centered */
    align-items: center; /* Center contents vertically */
    justify-content: center; /* Center contents horizontally */
}

.share-icon {
    width: 20px; /* Set width of SVG icon */
    height: 20px; /* Set height of SVG icon */
    fill: #000; /* Set color of SVG icon */
}

.container {
    text-align: center;
    max-width: 300px; /* Adjust the maximum width as needed */
    height: auto; /* Maintain aspect ratio */
    /* Center the text within the container */
}

.image-container {
    /* Add any image container-specific styles here */
}

.main-image {
    max-width: 300px; /* Set the maximum width of the image */
    height: auto; /* Maintain the aspect ratio */
    margin-top: 30px; /* Adjust the top margin */
}

.main-image-container {
    max-width: 110%; /* Adjust the maximum width to fit the viewport */
    height: auto; /* Maintain aspect ratio */
    overflow: hidden; /* Hide overflowing content */
}

.tile {
    background-color: #fcf1f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.text {
    font-family: 'Poetsen One', sans-serif; /* Use the "Poetsen One" font */
    font-size: 2.5em; /* Increase font size */
    color: #000000; /* White color for text */
    /* Remove text transformation to preserve original letter case */
    letter-spacing: 0.1em; /* Add spacing between letters */
  position: relative;
  top: -8px; /* Move text up */
  right: -5px; /* Move text right */
}

/* Add a grungy, distressed effect using a background image */
.text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/asfalt-light.png');
    opacity: 0.3; /* Adjust opacity for the desired level of grunge effect */
    z-index: -1; /* Place it behind the text */
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

h1.title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: #222;
    margin-bottom: 5px;
}

#bio-section p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #555;
    margin: 0;
}

#location-section p {
    font-size: 1rem;
    font-weight: 500;
    color: #444;
}

a.tile .text {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #020202;
}

a.tile:hover .text {
    text-decoration: underline;
}

.social-media-buttons {
    display: flex;
    justify-content: center;
    gap: 15px; /* Adjust the space between icons */
}

.social-icon {
    color: #000; /* Default icon color */
    font-size: 24px; /* Icon size */
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #007bff; /* Change color on hover */
}



/* Your existing CSS styles */

@media screen and (max-width: 414px) {
    /* Media query for screens with a maximum width of 414px (typical mobile width) */

    /* Adjust the width of the image for mobile */
    .custom-image {
        max-width: 220px;
        /* Adjust the maximum width as needed for mobile */
    }
}

.subscribe-button {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.subscribe-button:hover {
    background-color: #f0f0f0;
}

h1 {
    font-family: 'Pacifico', sans-serif;
    margin-top: -90px;
    font-weight: 400; /* Adjust the font weight to make it thinner */
}


.newimage {
    width: 150px;
    /* Adjust the width to your desired size */
    height: auto;
    /* Let the height adjust automatically to maintain aspect ratio */
}

.bottom-image {
    position: relative;
    top: -260px;
}


.userLocationElement {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px; /* Adjust the font size as needed */
}


h1 {
    font-size: 24px;
    font-weight: bold; /* Make the font thicker */
    margin-top: -40px;
}


header {
    width: 95%;
    max-width: 688px;
    display: flex;
    justify-content: flex-end;
    padding: 0px;
    margin-top: 10px;
}

.container {
    width: 100%;
    max-width: 800px;
    max-height: 800px;
    margin: 10px auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

a {
    text-decoration: none;
    color: rgb(3, 3, 3);
}

.tile {
    max-width: 600px; /* Set the maximum width */
    width: 65%;
    height: 25px;
    margin: 7px;
    border-radius: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-top: -35px;
    border: 2px solid white;
}



@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-12px); /* Lower bounce height */
    }
    60% {
        transform: translateY(-7px); /* Lower bounce height */
    }
}

.tile {
    max-width: 600px;
    width: 65%;
    height: 50px;
    margin: 7px;
    border-radius: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin-top: -35px;
    border: 2px solid white;
    animation: breath 1s infinite;
    transition: transform 0.2s ease;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    flex-direction: row;
    text-decoration: none; /* <-- add this */
}


.tile .text {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: -50px;
    text-decoration: none; /* Removes underline */
}


.tile:hover {
    animation: breath 1s infinite; /* Ensure breath continues on hover */
}

@keyframes breath {
    0%, 100% {
        transform: scale(1); /* Original size */
    }
    50% {
        transform: scale(1.05); /* Slightly larger */
    }
}


.font {
    font-family: 'poppins', sans-serif; /* Use a bold, blocky font */
    font-size: 2.5em; /* Increase font size */
    font-weight: bold; /* Make text bold */
    color: white; /* Set text color to white */
    text-transform: uppercase; /* Make all text uppercase */
    letter-spacing: 0.1em; /* Add spacing between letters */
    border: none; /* Ensure there is no border */
}

.image-container {
    height: 276px;
    width: auto;
    overflow: hidden;
}


.image-container img {
    max-width: 100%; /* Ensure the image doesn't exceed the container width */
    max-height: 100%; /* Ensure the image doesn't exceed the container height */
    height: auto;
    width: auto;
}

.icon {
    margin: 4px 8px;
    width: 64px;
    height: 52px;
}

.tile:hover {
    transition: cubic-bezier(0.07, 1.41, 0.82, 1.41) 0.2s;
    transform: scale(1.03);
}

body {
    background-color: #faa6d5; /* Corrected color code */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}



.location-section {
    font-size: 20px; /* Adjust the font size as needed */
    text-align: center; /* Center the text */
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#pin-emoji {
    font-family: 'Fjalla One', sans-serif;
}

/* Add this in your external CSS file (Styles.css) */
.move-left {
    margin-left: 10px;
    /* Adjust the margin-left value as needed */

}

.tileu {
    width: 85%; /* Adjust the width as needed */
    height: 28px; /* Adjust the height as needed */
    margin: 7px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 10px;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5; /* Set the background color */
    text-decoration: none; /* Remove the default underline */
}

.newimage {
    flex: 0 0 auto; /* Make sure the image doesn't grow or shrink */
    margin-right: 10px; /* Add spacing between the image and text */
}

.logo {
    max-width: 100px; /* Set the maximum width of the image */
    height: auto; /* Let the height adjust automatically to maintain aspect ratio */
}

.tileu {
    max-width: 400px;
    width: 85%;
    height: 28px;
    margin: 7px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    background-color: #f5f5f5;
    text-decoration: none;
}

.newimage {
    flex: 0 0 auto;
    margin-right: 10px;
}

.logo {
    max-width: 100px;
    height: auto;
}

.tileu-text {
    margin-left: -140px !important;
    font-size: 16px;
    white-space: nowrap;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    letter-spacing: -.012em;
    padding-right: 10px; /* Adjust the padding-right to create space between text and right edge */
}



.age-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 48px;
  background: linear-gradient(to bottom, #ffffff 0%, #e6e6e6 100%);
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 1.3rem;
  font-weight: 700;
  border: 2px solid #e0e0e0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.age-button .text {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.03em;
  transition: all 0.2s ease;
}

/* Dark overlay on click - increases opacity slightly */
.age-button.clicked::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.1); /* subtle dark overlay */
  border-radius: 48px;
  pointer-events: none;
  transition: background 0.3s ease;
}

/* Hover effect */
.age-button:hover {
  background: linear-gradient(to bottom, #fafafa 0%, #dcdcdc 100%);
  transform: translateY(-2px);
}





/* Your existing CSS code */

/* Add this media query for screens with a maximum width of 414px (typical mobile width) */
@media screen and (max-width: 414px) {
    .tile img.custom-image {
        max-width: 300px;
        /* Adjust the maximum width as needed for mobile */
    }
}
