html {
    background-color: #d5b694;
    font-family: 'Birthstone', cursive;
}

h1 {
    font-size: 80px;
    font-family: 'Birthstone', cursive;
    color: rgb(11, 36, 82);
    letter-spacing: 5px;
    line-height: 1;
    font-weight: 700;
    font-style: normal;
    max-width: 500px;
}

body {
    margin: 0;
    font-family: 'Kedebideri', sans-serif;
    min-height: 100vh;
    position: relative;
    padding: 1.5rem;
}

.profile-pic {
    position: absolute;
    top: 1.5rem;
    right: 50px;
    width: 180px;
    height: 220px;
    object-fit: cover;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-icon {
    font-size: 1.1rem;
    color: rgb(11, 36, 82);
}

.cta-container {
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: rgb(11, 36, 82);
    color: #fff;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: rgb(30, 60, 120);
    transform: translateY(-1px);
}


