.about-us-container {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    /* top: 70px; */
    top: 2000px;
    padding: 10px;
    width: 100%;
    height: auto;
    color: #fff;
    transition: all 0.3s ease-in-out;
    scroll-behavior: smooth;
}
.about-website, .about-creator {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin: 5px;
    padding: 0 10px;
}
.about-creator {
    justify-content: flex-start;
    gap: 15px;
    flex-direction: row;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
}
.about-creator img {
    width: 150px;
    height: auto;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
}
.about-website .title {
    align-self: flex-start;
    font-size: 3rem;
}
.about-creator .title {
    align-self: flex-start;
    font-size: clamp(2rem, 7vw, 4rem);
    height: 100%;
    display: flex;
    align-self: center;
    justify-content: center;
}
.website-content {
    font-size: 1.3rem;
}
.features {
    font-size: 2rem;
}
.contact-us-icons {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    align-items: center;
    margin: 15px 10px;
    cursor: pointer;
}
.contact-us-icons li {
    transition: transform 0.15s ease;
}
.contact-us-icons li:hover {
    transform: scale(1.1);
}
.source a {
    cursor: pointer;
    width: max-content;
}
.source a:hover {
    text-decoration: underline;
}

/* For computer larger screens */
@media (min-width: 1301px) {
    .about-us-container {
        padding: 10px 30px;
    }
}

/* For mobile screens */
@media (max-width: 950px) {
    .about-website .title {
        font-size: 3rem;
        margin-bottom: 10px;
    }
    .website-content {
        font-size: 1.3rem;
    }
    .contact-us-icons {
        margin: 15px 0;
    }
}
