@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Parisienne&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Nanum+Pen+Script&family=Parisienne&family=Sacramento&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-align: justify;
}

body {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    background: black;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    color: white;
}


.article-for-links {
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20%;
    /* text-align: center; */
}

h1 {
    color: white;
}

.linked-in-work {
    padding: 40% 20% 20% 20%;
}

.twitter-bird {
    background: url('../assets/for-links/bird-flying2.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

.linked-in-work {
    background: url('../assets/for-links/balanceBlack.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

.face-book {
    background: url('../assets/for-links/mask.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

.insta-life {
    background: url('../assets/for-links/memories.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

/* .x-files {
    background-color: black;
} */


.tik-kok {
    background: url('../assets/for-links/secret-path.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

.article-for-links p {
    color: black;
    padding: 15px 0;
    font-size: 28px;
    line-height: 25px;
    text-align: center;
    font-family: "Parisienne", cursive;
    font-weight: 800;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}


.linked-in-work p,
.face-book p,
.x-files p {
    color: white;
    font-weight: 400;
    font-style: normal;
    line-height: 107%;
}

.tik-kok p {
    color: rgb(41, 8, 169);
    font-weight: 800;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


iframe {
    width: 560px;
    height: 315px;
}


p iframe {
    margin-top: 10%;
}

.div-img-logo {
    margin: 10% 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    /* width: 100%; */
}


.img-logo {
    width: 60%;
    height: auto;
    object-fit: cover;
}



@media (max-width: 912px) {
    .article-for-links {
        padding: 28% 13% 13% 13%;
    }

    .linked-in-work {
        padding-top: 60%;
    }

    iframe {
        width: 100%;
        height: auto;
    }

    .div-img-logo {
        margin: 20% 0;
    }
}


@media (max-width: 580px) {
    .linked-in-work {
        padding-top: 65%;
    }
}


@media (max-width: 412px) {
    .article-for-links p {
        font-size: 20px;
        line-height: 22px;
        padding: 10px;
    }

    .div-img-logo {
        margin: 30% 0;
    }

}