/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header styles */
header {
    padding: 1.5rem;
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    font-family: 'MonainnRegular', cursive;
}

.name {
    font-size: 2rem;
    font-weight: 500;
}


/* Main content styles */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.profile {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.profile-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.nav-dots {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #333;
}

.profile-text {
    font-size: 1.5rem;
    margin: 1.5rem 0;
    line-height: 1.4;
}

/* Footer styles */
footer {
    background-color: #000;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.footer-dots {
    display: flex;
    justify-content: center;
}

footer .dot {
    background-color: #555;
}

footer .dot.active {
    background-color: #fff;
}

/* Responsive styles */
@media (max-width: 768px) {
    .profile-text {
        font-size: 1.2rem;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .profile-text {
        font-size: 1rem;
    }
}

@font-face {
  font-family: 'MonainnRegular';
  src: url('data/fonts/MonainnRegular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}