body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

main {
    background-image: linear-gradient(45deg, #3ab39d, transparent);
    margin-top: 55px;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.5s ease, backdrop-filter 0.5s ease;
}

header.scrolled {
    background-color: rgba(51, 51, 51, 0.9);
    backdrop-filter: blur(6px);
}

.logo-header, .logo-large {
    transition: transform 0.7s, filter 0.7s;
}

.logo-header {
    width: 32px;
    margin-right: 20px;
}

.logo-large,
.logo-header {
    transition-duration: .7s;
    max-width: 75vw;
}

.logo-large:hover,
.logo-header:hover {
    transition-duration: .7s;
    transform: scale(1.04);
    filter: drop-shadow(2px 4px 6px #ffff004a);
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-menu a {
    margin-left: 20px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.header-menu a:hover {
    text-decoration: underline;
}

.hero {
    text-align: center;
    padding: 20px;
}

.developers {
    padding: 20px;
}

.developer-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.developer {
    margin: 10px;
    width: calc(50% - 20px);
    box-shadow: 0 0 10px 4px rgb(0 0 0 / 27%);
    padding: 10px;
    box-sizing: border-box;
    transition: transform 0.5s ease-in-out;
    background-image: linear-gradient(45deg, #49e9ae7a, transparent);
}

.scaled {
    transition: transform 0.5s ease-in-out;
    cursor: pointer;
}

.scaled:hover {
    transition: transform 0.5s ease-in-out;
    transform: scale(1.03);
}

.scaled:active {
    box-shadow: 0 0 10px 0px rgb(0 0 0 / 27%);
    transition: transform 0.5s ease-in-out;
    transform: scale(0.99);
}

.developer img {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease-in-out;
}

.about {
    padding: 40px 20px;
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 20px auto;
    max-width: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.about h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.about p {
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.about li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 10px;
}

.about li i {
    color: #ffdd00;
    margin-right: 8px;
}

.contact {
    background-color: #f9f9f9;
    padding: 40px 20px;
    color: #333;
}

.contact h2 {
    text-align: center;
    margin-bottom: 40px;
}

.contact-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 280px;
    margin-right: 20px;
}

.contact-info p {
    margin-bottom: 20px;
    line-height: 1.5;
}

.contact-form {
    flex: 2;
    min-width: 300px;
}

.contact-form input,
.contact-form textarea {
    width: calc(100% - 24px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #2575fc;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #1956d1;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}

.footer-content p {
    margin: 0;
    padding: 0;
}        

@media (max-width: 600px) {
    .developer {
        width: calc(100% - 20px);
    }

    .header-content {
        flex-direction: column;
    }

    .header-menu a {
        margin: 10px 0;
    }
}
