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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #faf6f1;
    color: #000000;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.name {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 30px;
    text-align: center;
    margin-bottom: 5px;
}

.instagram-handle {
    font-family: 'Montserrat', sans-serif;
    color: #2b1b10;
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
}

.buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    margin-bottom: 60px;
}

.button {
    font-family: 'DM Sans', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border: 1px solid #000000;
    border-radius: 40px;
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

footer {
    width: 100%;
    text-align: center;
}

.divider {
    height: 0.5px;
    width: 80%;
    background-color: rgba(0, 0, 0, 0.3);
    margin: 0 auto 20px;
}

.copyright {
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.copyright-second {
    font-size: 12px;
    letter-spacing: 0.5px;
} 