* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: disc;
    padding-left: 20px;
}

ol {
    padding-left: 20px;
}

a {
  color: #fca9a9;
}

body {
    min-height: 100vh;
    background: #000;
    font-family: Arial;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 40px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;

    width: 100%;
}

.card {
    width: 630px;
    border-radius: 14px;
    overflow: hidden;
    background: #1c1c1f;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.card-header {
    background: #ffd4d4;
    background: linear-gradient(-180deg, rgba(255, 212, 212, 1) 0%, rgba(184, 106, 106, 1) 100%);
    padding: 12px 16px;
}

.card-header h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: lowercase;
    background: linear-gradient(
        -180deg,
        #171717 0%,
        #613838 100%
    );
    color: transparent;
    background-clip: text;
}

.card-body {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.4;

    padding: 8px 4px 40px 4px;
    min-height: 105px;

    overflow-wrap: break-word;
    word-break: break-word;
}

.license {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;

    margin-top: 20px;
    text-align: center;
}

.about-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;

    width: 100%;
}

.about-text {
    flex: 1;
    min-width: 0;
}

.about-text h2 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.about-text p {
    overflow-wrap: break-word;
    word-break: break-word;
    line-height: 1.3;
}

.about-side {
    width: 180px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;

    flex-shrink: 0;
}

.avatar {
    width: 180px;
    height: auto;

    border: 2px solid #fca9a9;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 3.5rem;
    font-weight: 700;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 2px;
    width: 100%;
}

.socials img {
    width: 28px;
    height: auto;
    display: block;

    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.socials img:hover {
    transform: scale(1.5);
}

.centre-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
