body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
header {
    padding: 2px;
    background-color: #1c3b70;
    box-shadow: 0 2px 4px #1c3b70 0.9;
    font-size: 25px;
}

ul {
    display: flex;
    justify-content: space-around;
}

nav ul a {
    text-decoration: none;
    color: #fff;
}

.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.name h1 {
    font-size: 40px;
}

.details {
    margin: 0;
    padding: 0;
    line-height: 0.4;
    font-size: 17px;
}
.article {
    font-size: 20px;
    width: 70vw;
    text-align: justify;
    max-width: 800px;
    padding: 20px;
    margin: auto;
}

.article p {
    margin-bottom: 1em;
    line-height: 1.5;

}
.share-container {
    text-align: center;
    margin: 10px;
}

.icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; 
    margin-top: 10px;
}

.icon {
    text-decoration: none;
    color: #000; 
    font-size: 40px; 
}

.icon.facebook {
    color: #3b5998;
}

.icon.linkedin {
    color: #0077B5;
}

.icon.whatsapp {
    color: #25D366;
}
.copyButton {
    background: none;
    border: none;
    cursor: pointer;
}

.copyButton i {
    font-size: 24px;
    color: #333;
    transition: color 0.3s;
}

.copyButton:hover i {
    color: #1c3b70
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background-color: #666;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #444;
}


@media (max-width: 820px) {
    header{
        font-size: 20px;
    }
    .name h1 {
        font-size: 30px;
        text-align: center;
        
    }
    
    .details {
        font-size: 15px;
        font-weight: bold;
    }
    .article {
        width: 90vw;
        max-width: 820px;
        padding: 10px;
    }
    
    .article p {
        margin-bottom: 1em;
        line-height: 1.5;
    
    }
    ::-webkit-scrollbar {
        width: 0;
        display: none;


    }

}