*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
:root{
    --bg-color: #111417;
    --main-color: #FD7014;
    --second-level-color: #171b1f;
    --text-color: #EEEEEE;
    --text-two-color: rgb(163, 163, 163);
}
body{
    background-color: var(--bg-color);
}


/* NAV BAR */
.nav-bar{
    width: 90%;
    height: 2.5rem;
    margin: 1rem auto;
    display: flex;
    justify-content: space-between;
    max-width: 600px;
}
.follow-btn,
.share-btn{
    width: 2.2rem;
    height: 90%;
    margin: 1px;
    background-color: var(--second-level-color);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
    color: var(--text-two-color);
    transition: transform 0.3s ease-in-out;
}
#notifica-img{
    width: 15px;
    height: 15px;
    margin: auto;
}
.nav-bar button:hover{
    transform: scale(1.1);
    background-color: var(--text-two-color);
}
.follow-btn:hover,
.share-btn:hover{
    color: var(--bg-color);
}

/* Backdrop */
.backdrop{
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    width: 100vw;
    height: 100vh;
    display: none;
}

/* NEWS MODAL */
.news-modal{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    width: 90%;
    background-color: var(--bg-color);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    max-width: 500px;
    display: none;
}
.close-btn{
    position: absolute;
    right: 0;
    margin: 8px;
    color: var(--text-color);
    font-size: 20px;
    transition: transform 0.3s ease-in-out;
}
.close-btn:hover{
    transform: scale(1.1);
    cursor: pointer;
}
.news-modal h1{
    position: relative;
    top: 30px;
    color: var(--text-color);
    font-size: 17px;
    font-weight: bold;
    width: 80%;
    margin: auto;
}
.articles{
    width: 80%;
    margin: 4rem auto;
}
.art h2{
    color: var(--main-color);
    font-size: 15px;
    margin-bottom: 0.2rem;
}
.art p{
    font-size: 15px;
    color: var(--text-two-color);
    margin-bottom: 1.5rem;
}


/* SHARE MODAL */
.share-modal{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    width: 90%;
    background-color: var(--bg-color);
    opacity: 0; 
    transition: opacity 0.3s ease-in-out;
    max-width: 500px;
    display: none; 
}
.share-modal h1{
    position: relative;
    top: 30px;
    color: var(--text-color);
    font-size: 17px;
    font-weight: bold;
    text-align: center;
}
.share-link:first-of-type{
    margin-top: 3rem;
}
.share-link:last-of-type{
    margin-bottom: 2rem;
}
.share-link{
    background-color: var(--second-level-color);
    display: flex;
    width: 90%;
    height: 3rem;
    margin: 8px auto;
    border-radius: 4px;
    transition: transform 0.3s ease-in-out;
    text-decoration: none;
}
.share-link:hover{
    transform: scale(1.1);
}
.share-link img{
    width: 25px;
    height: 25px;
    margin: auto 8px;
    border-radius: 4px;
}
.share-link .description{
    color: var(--text-two-color);
    font-size: 13px;
    text-align: center;
    padding: 4px;
}
.share-link:hover{
    background-color: grey;
}
.share-link .arrow{
    font-size: 10px;
    color: var(--text-two-color);
    margin: auto 1.5rem;
}
.input-clipboard{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    height: 3rem;
    background-color: var(--second-level-color);
    display: flex;
    border-radius: 4px;
}
.other{
    margin-top: -1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: bold;
    font-size: 15px;
    text-align: center;
}
.input-clipboard input{
    border: none;
    border-radius: 4px;
    background-color: var(--bg-color);
    height: 2rem;
    color: var(--text-two-color);
    width: 80%;
    margin: auto 8px;
}
.input-clipboard button{
    background-color: var(--second-level-color);
    border: none;
    border-radius: 2px;
    width: 15%;
    margin: 8px 8px;
    transition: transform 03s ease-in-out;
}
.input-clipboard button:hover{
    transform: scale(1.1);
}
.input-clipboard img{
    width: 25px;
    height: 25px;
}

/* SHARE MODAL LINK*/
.share-modal-link{
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--bg-color); 
    position: fixed;
    margin: auto;
    z-index: 999;
    display: none; 
}
.closeShareBtnLink{
    position: absolute;
    right: 0;
    margin: 8px;
    color: var(--text-color);
    font-size: 20px;
    transition: transform 0.3s ease-in-out;
}
.closeShareBtnLink:hover{
    transform: scale(1.1);
}
.share-modal-link h1{
    margin-top: 30px;
    text-align: center;
    color: var(--text-color);
    font-weight: bold;
    font-size: 17px;
}
.share-modal-link p{
    text-align: center;
    font-size: 15px;
    color: var(--text-two-color);
}
.social-list{
    width: 70%;
    margin: 1rem auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.social-list img{
    width: 28px;
    height: 28px;
    border-radius: 50%;
}





/* Main Content */
.Presentation{
    max-width: 600px;
    width: 90%;
    margin: auto;
}
.main-image{
    width: 6rem;
    margin: auto;
}
.main-image img{
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
}
.description{
    width: 100%;
    margin: auto;
}
.description h1{
    margin-top: 1rem;
    font-size: 17px;
    color: var(--main-color);
    text-align: center;
}
.description p{
    font-size: 15px;
    color: var(--text-two-color);
    text-align: center;
}
.description p:first-of-type{
    margin-top: 4px;
}
.social{
    max-width: 250px;
    margin: auto;
    width: 80%;
    margin-top: 0.7rem;
    height: 2rem;
    display: flex;
    align-items: center;
}
.social a{
    margin: auto;
}
.social img{
    width: 28px;
    height: 28px;
}
.social img:hover{
    transform: scale(1.1);
}


/*Button link style */
.button-link{
    max-width: 500px;
    width: 90%;
    margin: 1rem auto;
    display: flex;
    flex-direction: column;
}
.link-btn{
    background-color: var(--second-level-color);
    border: none;
    margin: 4px 0px;
    height: 3.5rem;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
    color: var(--text-two-color);
    cursor: pointer;
    display: flex;
    transition: transform 0.3s ease-in-out;
}
.link-btn:hover{
    transform: scale(1.1);  
}
.link-btn img{
    width: 40px;
    height: 30px;
    margin: auto 6px;
}
.link-btn a{
    display: flex;
    width: 90%;
    text-decoration: none;
    color: var(--text-two-color);
}
.link-btn p{
    font-size: 15px;
    text-align: left;
    margin: auto;
}
.subtitle{
    text-align: center;
    color: var(--text-color);
    font-weight: bold;
    font-size: 15px;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem
}
.share-button{
    background-color: red;
    width: 40px;
    height: 40px;
    border: none;
    background-color: var(--second-level-color);
    color: var(--text-two-color);
    margin: auto 2px;
    z-index: 1;
}
.share-button:hover{
    font-size: 20px;
}
#MySetup{
    height: 10rem;
    display: flex;
    flex-direction: column;
}
#MySetup a{
    width: 100%;
}
#MySetup a img{
    width: 95%;
    height: 110px;
    margin: 6px auto;
    border-radius: 4px;
}
#MySetup .description{
    display: flex;
    width: 100%;
}
#MySetup .description p{
    width: 40%;
    margin-left: 32%;
    text-align: center;
}
#MySetup .share-button{
    margin-top: -7px;
    margin-right: 0rem;
}
