* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-decoration: none;
}

body {
    background-color: #e0fffe !important;
    max-width: 100%;
    overflow-x: hidden;
}
.background-banner {
    position: relative;
    width: 100%;
    height: 35vh;
    overflow: hidden;
}

.background-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 51%;
    background: linear-gradient(to bottom, rgba(224, 255, 254, 0), rgba(224, 255, 254, 1) 100%);
    z-index: 1;
}

.background-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.myself-card {
    position: relative;
    margin: 0 auto;
    width: 90%;
    max-height: 200px;
    max-width: 800px;
    padding: 1.5rem;
    border-radius: 20px;
    border: 5px solid #a500ce;
    background-color: #ffddf9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.myself-card img {
    position: relative;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #a500ce;
    background-color: #ffddf9;
    margin-bottom: 0.5rem;
}

.myself-card p {
    font-size: 1.25rem;
    font-weight: bold;
    color: #a500ce;
    transform: translateY(-50%);
}
.mc-socials {
    position: relative;
    margin: 2rem 0;
    width: 100%;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mc-socials #mc-socials-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #262626;
    margin-bottom: 1rem;
}

.mc-socials #mc-socials-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.mc-socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #262626;
    text-decoration: none;
    font-size: 1rem;
}

.mc-socials img {
    width: 40px;
    height: 40px;
    margin-right: 0.5rem;
}
.mc-pages {
    position: relative;
    margin: 0 auto;
    width: 80%;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mc-pages #mc-pages-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #262626;
    margin-bottom: 1rem;
}

.mc-pages #mc-pages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    width: 90%;
}

.mc-page-card {
    background-color: #c9e3e2;
    border-radius: 10px;
    border: 5px solid #c9e3e2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 50vh;
    max-height: 50vh;
}

.mc-page-card img {
    width: 50%;
    height: auto;
    object-fit: cover;
    margin-bottom: 1rem;
}

.mc-page-card p {
    font-size: 1.1rem;
    color: #262626;
    text-align: center;
}

