/* Priscilia King Chandra
   NIM :  0706012310029   */


   /* desktop only */
   
body {
    background-image: linear-gradient(rgba(255, 243, 224, 0), rgba(255, 243, 224)), url("https://i.pinimg.com/564x/9b/f6/e8/9bf6e8c3cd84cacaf9ef6e604033d03f.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 0;
    margin-right: 0;
}


nav {
    background-image: linear-gradient(rgba(255, 232, 191, 1) 60%, rgba(255, 232, 191, 0));
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 70px;
    top: 0px;
    left: 0px;
    z-index: 100;

    li {
        color: black;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        list-style: none;
        height: 50px;
        width: 100px;
        text-align: center;
        line-height: 50px;
        font-size: larger;

        a {
            color: black;
            text-decoration: none;
        }
    }

    ul {
        display: flex;
    }
}

.nav-logo-title {
    display: flex;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;

    img {
        content: url("https://pa1.aminoapps.com/6857/1ddc99c6a88b05c400d83eaa6e941f193aad612b_hq.gif");
        max-width: 70px;
        margin-left: 20px;
        margin-right: 10px;
    }

    a {
        color: black;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        text-decoration: none;
        font-size: 3vh;
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


#header {
    align-items: center;
    margin-right: 200px;
    margin-left: 200px;
    padding-top: 125px;
    padding-bottom: 125px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    flex-direction: row-reverse;
    display: flex;

    .header-texts {
        text-align: justify;
        padding-inline: 20px;
        animation: zoomOut 1.2s cubic-bezier(0.42, 0, 0.58, 1) forwards;
    }

    h1 {
        text-align: center;
        font-size: 10vh;
        color: #FF869E;
        text-shadow: 2px 2px 5px #000;
    }

    h3 {
        font-size: 5vh;
        color: #7D0A0A;
        margin-top: -50px;
    }

    p {
        font-size: 3.5vh;
    }

    .header-filler {
        content: url("https://pa1.aminoapps.com/6857/a5b282484ce532feb33f472650e023ac4d1f429a_hq.gif");
        height: 300px;
        display: flex;
    }
}

@keyframes pulseBorder {
    0% {
        border-color: rgba(250, 235, 215, 0.68);
    }

    50% {
        border-color: rgba(250, 235, 215, 0.9);
    }

    100% {
        border-color: rgba(250, 235, 215, 0.68);
    }
}

#content {
    padding-top: 30px;
    padding-left: 50px;
    text-align: justify;
    margin-left: 150px;

    .content-first {
        animation: pulseBorder 2s cubic-bezier(0.42, 0, 0.58, 1) infinite;
        border-radius: 20px;
        background-color: rgba(250, 235, 215, 0.68);
        margin-right: 80px;
        margin-bottom: 20px;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 1px;
        padding-bottom: 15px;

        h2 {
            text-shadow: 1px 1px 2px white, 0 0 25px #FF869E, 0 0 5px #7D0A0A;
            font-size: 4vh;
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

        }

        p {
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            font-size: 2vh;
            margin-top: -10px;
        }
    }

    .content-second {
        animation: pulseBorder 2s cubic-bezier(0.42, 0, 0.58, 1) infinite;
        margin-top: 10px;
        border-radius: 20px;
        background-color: rgba(250, 235, 215, 0.68);
        margin-right: 80px;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 1px;
        padding-bottom: 15px;

        h2 {
            text-shadow: 1px 1px 2px white, 0 0 25px #FF869E, 0 0 5px #7D0A0A;
            font-size: 4vh;
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

        }

        h4 {
            font-size: 2vh;
            font-family: 'Courier New', Courier, monospace;
            margin-top: -15px;
        }

        p {
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        }
    }

}

.content-aside {
    display: flex;
    margin-right: 200px;
}

.content-aside aside {
    margin-top: 30px;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 10px;
    background-color: #ffc4c480;
    margin-bottom: 400px;
    position: sticky;

    h2 {
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        margin-bottom: -5px;
    }

    a {
        font-family: 'Courier New', Courier, monospace;
        font-weight: bold;
        color: #7D0A0A;
        text-decoration: none;

    }

    li {
        padding-bottom: 5px;
    }
}

.article:hover {
    transform: scale(1.1);
}

#articles {
    margin-left: 200px;
    margin-right: 200px;
    text-align: justify;
    padding-top: 20px;
    animation-name: pulseBorder;
    animation-duration: 4s;

    .article {
        transition: 0.5s all ease-in-out;
    }

    h3 {
        text-shadow: 1px 1px 2px #FF869E, 0 0 25px #FF869E, 0 0 5px rgba(255, 232, 191);
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        color: #7D0A0A;
        font-size: 2.8vh;
    }

    p {
        font-size: 2vh;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        padding-bottom: 5px;
    }

    a {
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        text-decoration: none;
        background-color: #FF869E;
        font-size: 2vh;
        color: #7D0A0A;
        padding: 5px;
        padding-left: 50px;
        padding-right: 50px;
        border-radius: 5px;
    }

    .row-first {
        display: flex;
        padding-bottom: 20px;
    }

    .row-first td {
        background-color: #ff869e62;
        border-radius: 10px;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 8px;
        padding-bottom: 8px;
        width: 355px;
    }

    .row-first td:nth-child(2) {
        margin-right: 20px;
        margin-left: 20px;
    }

    .row-first .article:nth-child(1) img {
        content: url(https://i.pinimg.com/originals/b3/cf/ff/b3cfff156c1c6f207fc0487d70cef043.jpg);
        max-width: 355px;
        border-radius: 10px;
    }

    .row-first .article:nth-child(2) img {
        content: url(https://i.pinimg.com/originals/cf/41/d7/cf41d75ba8cfbf16abc89e75aaa23479.jpg);
        max-width: 355px;
        border-radius: 10px;
        padding-left: 3px;
    }

    .row-first .article:nth-child(3) img {
        content: url(https://i.pinimg.com/originals/10/af/09/10af092055153e13845c1bab14a16a2c.jpg);
        max-width: 355px;
        border-radius: 10px;
        padding-left: 1.5px;
    }

    .row-second {
        margin-top: 20px;
        display: flex;
        background-color: #ff869e62;
        border-radius: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
        padding-right: 10px;

        .article-long {
            h3 {
                font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
                font-size: 3vh;
            }

            p {
                padding-right: 35px;
                font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
                font-size: 2vh;
            }
        }

        img {
            content: url(https://i.gifer.com/3vh.gif);
            border-radius: 20px;
            max-width: 300px;
        }
    }
}

#creativity {
    text-align: justify;
    margin-left: 200px;
    margin-right: 200px;
    padding-top: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

    h2 {
        text-align: left;
        text-shadow: 1px 1px 2px white, 0 0 25px rgba(255, 232, 191), 0 0 5px rgba(255, 232, 191);

    }

    .mini-one img:hover {
        content: url(https://i.pinimg.com/originals/22/11/d8/2211d8070ade3a24cc69dcf6883df5a5.jpg);
        max-width: 255px;
        border-radius: 10px;
        position: relative;
        transform: rotateY(180deg);
        object-fit: cover;
    }

    .mini-one img {
        content: url(https://i.pinimg.com/564x/8b/cf/73/8bcf73fd58a6b7ecc215d45786e534ab.jpg);
        max-width: 255px;
        border-radius: 10px;
        transition: transform 1s ease-in-out;
    }

    .mini-two img:hover {
        content: url(https://i.pinimg.com/originals/88/ba/d4/88bad4210f6ff11e97e11c6a7fac578a.jpg);
        max-width: 255px;
        border-radius: 10px;
        position: relative;
        transform: rotateY(180deg);
        object-fit: cover;
    }

    .mini-two img {
        content: url(https://i.pinimg.com/564x/f0/c1/f3/f0c1f3ad260f670e154076f856958bc3.jpg);
        max-width: 265px;
        border-radius: 10px;
        transition: transform 1s ease-in-out;
    }

    .mini-three img:hover {
        content: url(https://i.pinimg.com/originals/b7/7c/94/b77c940171905ed8d4d15667654a5735.jpg);
        max-width: 255px;
        border-radius: 10px;
        position: relative;
        transform: rotateY(180deg);
        object-fit: cover;
    }

    .mini-three img {
        content: url(https://i.pinimg.com/564x/6f/d2/24/6fd224b56a7ba57d75b11f9ad1c5dd34.jpg);
        max-width: 265px;
        border-radius: 10px;
        transition: transform 1s ease-in-out;
    }

    
    .mini-four img:hover {
        content: url(https://i.pinimg.com/originals/c7/b3/db/c7b3db11442adfcf6cef7bfd1d1e4ba9.jpg);
        max-width: 255px;
        border-radius: 10px;
        position: relative;
        transform: rotateY(180deg);
        object-fit: cover;
    }

    .mini-four  img {
        content: url(https://i.pinimg.com/736x/71/ef/23/71ef23576728d6ccb65aba8fcee8b832.jpg);
        max-width: 265px;
        border-radius: 10px;
        transition: transform 1s ease-in-out;
    }

    .creativity-wrapper {
        display: flex;

        .mini-one, .mini-two, .mini-three, .mini-four {
            background-color: #FF869E;
            margin-right: 10px;
            border-radius: 10px;
            padding-left: 8px;
            padding-right: 8px;
            padding-top: 8px;
            width: 265px;
        }


    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.creativity-wrapper {
    display: flex;
}

.mini-one,
.mini-two,
.mini-three,
.mini-four {
    animation: fadeIn 0.5s ease-out forwards;
    background-color: #FF869E;
    margin-right: 10px;
    border-radius: 10px;
    padding: 8px;
}

.mini-one img,
.mini-two img,
.mini-three img,
.mini-four img {
    max-width: 250px;
}

.mini-one img,
.mini-two img {
    height: 250px;
    object-fit: cover;
}

.mini-three img,
.mini-four img {
    height: 250px;
    object-fit: contain;
}


footer {
    margin-top: 20px;
    background-color: #ff869e62;
    justify-content: space-between;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    bottom: 0;
    left: 0;
    bottom: 0;
}

.footer-logo {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    padding-left: 40px;
    text-align: left;

    h3 {
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-size: 4vh;
        margin-bottom: 5px;
    }

    p {
        font-size: 2vh;
    }
}

.footer-form {
    margin-top: -35px;
    text-align: left;
    padding: 50px;

    p {
        font-size: 2.5vh;
        margin-bottom: 10px;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }

    label {
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-size: 1.8vh;
        margin-bottom: 5px;
    }


    input[type="text"],
    select {
        margin-bottom: 10px;
        width: calc(100% - 20px);
        padding: 8px;
        border-radius: 5px;
        border: 1px solid #ccc;
        position: relative;
        top: 5px;

    }

    input[type="radio" i] {
        background-color: initial;
        font-size: 1.5vh;
        cursor: default;
        appearance: auto;
        box-sizing: border-box;
        margin: 3px 3px 0px 5px;
        padding: initial;
        border: initial;
    }
}

.footer-form select {
    width: 100%;
}

button {
    border-radius: 10px;
    background-color: #7D0A0A;
    color: #fff;
    padding: 10px 20px;
    font-size: 2vh;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    position: relative;
    top: 20px;
}

button:hover {
    background-color: #FF869E;
}

.footer-credit {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 2vh;
    padding-right: 50px;
    text-align: right;
}