/* Font */
body {
    margin: 0;
    font-family: 'Fredoka One', sans-serif;
    color: white;
    background-color: #2fc1ef;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Banner */
.banner {
    background: url("baner.png") no-repeat center center/cover;
    width: 100%;
    height: 1321px;
}

/* Content card */
.content {
    display: flex;
    justify-content: center;
    margin-top: -1240px; /* pull card slightly into banner */
    width: 95%;
}

.card {
    background: rgb(48 206 203 / 83%);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgb(51 255 163);
    max-width: 350px;
    width: 90%;
}

/* Avatar */
.profile {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #00fff652;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Text */
.fancy {
    font-size: 2.5rem;
    margin: 10px 0 5px 0;
}

.info p {
    margin: 5px 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* Contact icons */
.contact {
    margin-top: 20px;
}

.contact a img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact a img:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

/* Footer */
.footer {
    margin: 20px 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer a {
    color: #ff4d94;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
