/* General styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* First section styles */
#home {
    text-align: center;
    padding: 50px 0;
}

/* Circular avatar styles */
.avatar-container {
    margin-bottom: 20px;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}



/* Title and subtitle styles */
h1 {
    font-size: 1.8rem; /* Smaller size for the title */
    color: #ff005b;
    margin-bottom: 1px; /* Reduced space between h1 and h2 */
}

h2 {
    font-size: 1.2rem; /* Smaller size for the subtitle */
    color: #000000;
    margin-bottom: 25px; /* Increased space between h2 and the next section */
}

a {
    color: #ff005b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Link tree styles */
.link-tree {
    margin-top: 20px;
}

/* Promo link styles for desktop */
/* Promo link styles */
/* Promo link styles for all screens */
.promo-link {
    font-size: 1.1rem;
    color: #ff005b;
    text-decoration: none;
    border: 2px solid #ff005b;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    display: block; /* Ensures the buttons are block-level and stack on smaller screens */
    text-align: center; /* Center the text inside the button */
    margin: 10px auto; /* Center the button horizontally */
    box-sizing: border-box; /* Padding included in the width */
}

/* Full width on small screens */
@media (max-width: 768px) {
    .promo-link {
        width: 100%; /* Full width for mobile devices */
    }
}

/* On larger screens, buttons take 1/3 of the container width and are centered */
@media (min-width: 769px) {
    .promo-link {
        width: 50%; /* 1/3 of the container width */
    }
}


.promo-link:hover {
    background-color: #ff005b;
    color: #ffffff;
}


/* Media query for mobile devices (up to 600px wide) */
@media (max-width: 600px) {
    .promo-link {
        font-size: 0.9rem; /* Slightly smaller font size */
        padding: 8px 15px; /* Less padding for smaller screens */
        width: 100%; /* Make the link full width on mobile */
        box-sizing: border-box; /* Ensure padding is included in width */
    }
}


.slide {
    display: none;
}

.slide.active {
    display: block;
}

form {
    margin-top: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

form input[type="text"],
form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    padding: 12px 20px;
    background-color: #ff005b;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #e60051;
}

.button-container {
    text-align: center;
    margin: 20px 0;
}

.button-link {
    display: inline-block;
    padding: 15px 30px;
    background-color: #0be6af;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button-link:hover {
    background-color: #09d8a2;
}

/* Default styles for mobile (no margin on smaller screens) */
#promo {
    margin: 0; /* No margin on smaller screens */
}

/* For larger screens, apply left and right margins of 25% */
@media (min-width: 769px) {
    #promo {
        margin-left: 25%;
        margin-right: 25%;
    }
}


