@media only screen and (min-width: 800px) {

body {
    transition: color 0.5s, background-color 0.5s, background-image 0.5s;
    background-color: var(--background-color);
    overflow: hidden;
}

body a:hover {
    text-shadow: var(--hover);
}

/* Updates!!! Watermark 801x550*/
.update.hide {
    opacity: 0; visibility: hidden;
}
.update {
    position: fixed;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: 1;
}
.update h1 {
    text-align: center;
    margin-top: 23vw;
    padding: 6vw;
    color: #444444AA;
    background-color: #EEEEEE50;
    backdrop-filter: blur(5px);
    height: 8vw;
    font-weight: bolder;
    font-size: 8vw;
    border-radius: var(--content-radius);
    border: #EEEEEE80 solid 0.05vw;
}



/* Navbar */
.navbar.hide {
    opacity: 0%;
    transition: opacity 1s;
    transition-delay: 0.5s;
}

.navbar.hide:hover {
    opacity: 1;
    transition: opacity 0.5s;
}

.navbar {
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 98%;
    z-index: 1;
    transition: opacity 0.5s;

    background-color: #55555580;
    backdrop-filter: blur(3px);
    border: #88888850 solid 0.1vw;
    border-radius: var(--content-radius);
}

.navbar .leftbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 1vw;
    margin-top: 0;
}

.navbar .leftbar .menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-right: 1vw;
    margin-top: 1vw;
    color: var(--color);
    background-color: var(--border-color);
    padding: 0.7vw;
    width: 2vw;
    height: 2vw;
    border-radius: var(--button-radius);
    transition: transform 0.1s, box-shadow 0.1s;
}

.navbar .leftbar .menu:hover {
    transform: scale(1.05);
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: var(--hover) 0 0 1vw;
}

.navbar .leftbar .menu div {
    background-color: var(--color);
    width: 100%;
    height: 24%;
    border-radius: 100px;
}

.navbar .leftbar .theme {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-top: 1vw;
    color: var(--color);
    background-color: var(--border-color);
    padding: 0.7vw;
    width: 2vw;
    height: 2vw;
    border-radius: var(--button-radius);
    transition: transform 0.1s, box-shadow 0.1s;
}

.navbar .leftbar .theme:hover {
    transform: scale(1.05);
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: var(--hover) 0 0 1vw;
}

.navbar .leftbar .theme div {
    background-color: var(--color);
    width: 100%;
    height: 100%;
    border-radius: 100%;
    box-shadow: white 0vw 0vw 10px;
}

.navbar .leftbar .theme div div {
    background-color: var(--border-color);
    width: 60%;
    height: 60%;
    margin: 20%;
    box-shadow: 0 0;
    transition: transform 0.1s, opacity 0.1s;
}

.navbar .leftbar .theme div div div {
    background-color: #252525;
    width: 80%;
    height: 80%;
    border-radius: 100%;
    margin-left: 30%;
}

.navbar .leftbar .title {
    color: var(--color);
    background-color: var(--border-color);
    margin-top: 1vw;
    margin-right: 1vw;
    padding: 0.7vw;
    height: 2vw;
    border-radius: var(--button-radius);
    text-align: center;
    font-size: 2.8vw;
    font-weight: bolder;
    transition: transform 0.1s, box-shadow 0.1s;
}

.navbar .leftbar .title:hover {
    transform: scale(1.05);
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: var(--hover) 0 0 1vw;
}

.navbar .rightbar {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin: 1vw;
}

.navbar .rightbar a {
    margin-left: 1vw;
}

.navbar .rightbar a img {
    background-color: var(--border-color);
    color: var(--color);
    width: 2vw;
    padding: 0.7vw;
    border-radius: var(--button-radius);
    transition: transform 0.1s, box-shadow 0.1s;
}

.navbar .rightbar a img:hover {
    transform: scale(1.05);
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: var(--hover) 0 0 1vw;
}





/* Menu */
.menubar.hide {
    transform: translateX(-35vw);
    transition: transform 0.5s, opacity 0.5s;
}

.menubar.onsettings {
    opacity: 0;
    transform: translateX(59vw);
    transition: transform 0.5s, opacity 0.5s;
}

.menubar {
    display: flex;
    flex-direction: column;
    background-image: var(--content-color);
    position: fixed;
    width: 30vw;
    height: 98%;
    margin-top: -0.1vw;
    padding: 0;
    border-radius: var(--button-radius);
    box-shadow: var(--shadow-color);
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.5s, opacity 0.5s;
    z-index: 2;
}

.menubar .title {
    display: flex;
    flex-direction: row;
}

.menubar .title .menu .d1 {
    margin-top: 0;
}

.menubar .title .menu .d2 {
    margin-top: -2vw;
}

.menubar .title h2 {
    color: var(--border-color);
    margin-top: 1.1vw;
    padding: 0.7vw;
    height: 2vw;
    text-align: center;
    font-size: 2vw;
    font-weight: bolder;
}

.menubar .title a {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-top: 1.1vw;
    margin-left: 1vw;
    margin-right: 1vw;
    color: var(--color);
    background-color: var(--border-color);
    padding: 0.7vw;
    width: 2vw;
    height: 2vw;
    border-radius: var(--button-radius);
    transition: transform 0.1s, box-shadow 0.1s;
}

.menubar .title a:hover {
    transform: scale(1.05);
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: var(--hover) 0 0 1vw;
}

.menubar .title a div {
    background-color: var(--color);
    width: 100%;
    height: 24%;
    border-radius: 100px;
}

.menubar .button {
    display: flex;
    flex-direction: column;
    justify-content: start;
    width: 30vw;
    height: 82%;
    overflow: auto;
    margin-top: -0.5vw;
    padding-top: 0vw;
    padding-bottom: 1vw;
}

.menubar .button a {
    color: var(--color);
    background-color: var(--border-color);
    margin-top: 1vw;
    margin-left: 2vw;
    margin-right: 2vw;
    padding: 0.7vw;
    height: 2vw;
    border-radius: var(--button-radius);
    text-align: left;
    font-size: 1.5vw;
    transition: transform 0.1s, box-shadow 0.1s;
}

.menubar .button a:hover {
    transform: scale(1.05);
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: var(--hover) 0 0 1vw;
}

.menubar .button2 {
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: 10%;
    margin-left: 2vw;
    margin-right: 2.5vw;
    margin-top: 1vw;
    padding-top: 1vw;
    border-top: var(--border-color) solid 0.1vw;
}

.menubar .button2 a {
    color: var(--color);
    background-color: var(--border-color);
    padding: 0.7vw;
    border-radius: var(--button-radius);
    text-align: center;
    font-size: 1.5vw;
    transition: transform 0.1s, box-shadow 0.1s;
}

.menubar .button2 a:hover {
    transform: scale(1.05);
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: var(--hover) 0 0 1vw;
}



/* Settings */
.settingsbar.hide {
    transform: translateX(-65vw);
    transition: transform 0.5s;
}

.settingsbar {
    display: flex;
    flex-direction: column;
    background-image: var(--content-color);
    position: fixed;
    width: 59vw;
    height: 98%;
    margin-top: -0.1vw;
    padding: 0;
    border-radius: var(--button-radius);
    box-shadow: var(--shadow-color);
    transform: translateX(0);
    transition: transform 0.5s;
    z-index: 2;
}

.settingsbar .title {
    display: flex;
    flex-direction: row;
}

.settingsbar .title .settings .s1 {
    margin-top: 0;
}

.settingsbar .title .settings .s2 {
    margin-top: -2vw;
}

.settingsbar .title h2 {
    color: var(--border-color);
    margin-top: 1.1vw;
    padding: 0.7vw;
    height: 2vw;
    text-align: center;
    font-size: 2vw;
    font-weight: bolder;
}

.settingsbar .title a {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-top: 1.1vw;
    margin-left: 1vw;
    margin-right: 1vw;
    color: var(--color);
    background-color: var(--border-color);
    padding: 0.7vw;
    width: 2vw;
    height: 2vw;
    border-radius: var(--button-radius);
    transition: transform 0.1s, box-shadow 0.1s;
}

.settingsbar .title a:hover {
    transform: scale(1.05);
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: var(--hover) 0 0 1vw;
}

.settingsbar .title a div {
    background-color: var(--color);
    width: 60%;
    height: 15%;
    border-radius: 100px;
}

/* Style */
.settingsbar .style {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.settingsbar .style .style {
    display: flex;
    width: 12.8vw;
    height: auto;
    margin: 0.5vw;
    border: 0.2vw #00000000 solid;
    border-radius: var(--sub-button-radius);
}

.settingsbar .style .style.selected {
    display: flex;
    width: 12.8vw;
    height: auto;
    margin: 0.5vw;
    border: 0.2vw var(--border-color) solid;
    border-radius: var(--sub-button-radius);
}

.settingsbar .style .style div {
    display: flex;
    flex-direction: column;
    width: 12vw;
    height: 14vw;
    margin: 0.2vw;
    padding: 0.2vw;
    background-color: var(--border-color);
    border-radius: var(--button-radius);
    z-index: -2;
}

.settingsbar .style .style div img {
    width: 12vw;
    border-radius: var(--button-radius);
    z-index: 1;
}

.settingsbar .style .style div img.hide {
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
}

.settingsbar .style .style div h1 {
    font-size: 1.5vw;
    text-align: center;
    color: var(--color);
    border-radius: var(--button-radius);
    margin-top: 0.3vw;
}

/* Theme */
.settingsbar .theme {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: -1.5vw;
    padding: 1.2vw;
}

.settingsbar .theme .theme {
    width: 100%;
    margin: 0.5vw;
    padding: 0;
    border: 0.2vw #00000000 solid;
    border-radius: var(--sub-button-radius);
}

.settingsbar .theme .theme.selected {
    width: 100%;
    margin: 0.5vw;
    padding: 0;
    border: 0.2vw var(--border-color) solid;
    border-radius: var(--sub-button-radius);
}

.settingsbar .theme .theme h1 {
    font-size: 1.5vw;
    text-align: center;
    margin: 0.2vw;
    padding: 0.7vw;
    width: 100%;
    color: var(--color);
    background-color: var(--border-color);
    border-radius: var(--button-radius);
}

.settingsbar .button {
    display: flex;
    flex-direction: column;
    justify-content: start;
    width: 30vw;
    height: 82%;
    overflow: auto;
    margin-top: -0.5vw;
    padding-top: 0vw;
    padding-bottom: 1vw;
}

.settingsbar .button a {
    color: var(--color);
    background-color: var(--border-color);
    margin-top: 1vw;
    margin-left: 2vw;
    margin-right: 2vw;
    padding: 0.7vw;
    height: 2vw;
    border-radius: var(--button-radius);
    text-align: left;
    font-size: 1.5vw;
    transition: transform 0.1s, box-shadow 0.1s;
}

.settingsbar .button a:hover {
    transform: scale(1.05);
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: var(--hover) 0 0 1vw;
}

.settingsbar .button2 {
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: 10%;
    margin-left: 2vw;
    margin-right: 2.5vw;
    margin-top: 1vw;
    padding-top: 1vw;
    border-top: var(--border-color) solid 0.1vw;
}

.settingsbar .button2 a {
    color: var(--color);
    background-color: var(--border-color);
    padding: 0.7vw;
    border-radius: var(--button-radius);
    text-align: center;
    font-size: 1.5vw;
    transition: transform 0.1s, box-shadow 0.1s;
}

.settingsbar .button2 a:hover {
    transform: scale(1.05);
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: var(--hover) 0 0 1vw;
}

.socialmedia {
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

/* .title {
    width: 50%;
    text-align: center;
    background-image: var(--content-color);
    padding: 2vw;
    border-radius: var(--content-radius);
    margin: 2vw;
    margin-bottom: 5vw;
} */

.socialmedia .account {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-image: var(--content-color);
    border-radius: var(--content-radius);
    width: 18vw;
    margin: 2.5vw;
    margin-top: 20vh;
    box-shadow: var(--shadow-color);
}

.socialmedia .account h2 {
    font-size: 2vw;
}

.socialmedia .account a {
    font-size: 1.5vw;
    padding: 0.7vw;
    background-color: var(--border-color);
    color: var(--color);
    border-radius: var(--button-radius);
    margin: 3vw;
    margin-top: 0;
}

.socialmedia .account img {
    width: 12vw;
    border-radius: 100%;
    margin: 3vw;
    margin-bottom: 0;
}




/* Main New */
@keyframes main-new {
    from {
        width: 94.5vw;
        height: 90vh;
        margin: 2vw;
        margin-bottom: 5vw;
    }
    to {
        width: 88.5vw;
        height: 78vh;
        margin: 5vw;
    }
}

@keyframes scrolling {
    0% {opacity: 0;}
    10% {opacity: 1;}
    90% {margin-top: 0.22vw;}
    100% {opacity: 0;}
}

.main-new {
    position: relative;
    display: inline-block;
}

.main-new .imgnight {
    object-fit: cover;
    animation: main-new forwards;
	animation-timeline: scroll();
	animation-range: 0vh 60vh;
    border-radius: var(--content-radius);
    box-shadow: var(--shadow-color);
}

.main-new .imgday {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: main-new forwards;
	animation-timeline: scroll();
	animation-range: 0vh 60vh;
    border-radius: var(--content-radius);
    opacity: 0;
    transition: opacity 2s;
}

.main-new .div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: main-new forwards;
	animation-timeline: scroll();
	animation-range: 0vh 60vh;
}

.main-new .scrolling {
    opacity: 50%;
    scale: 0.8;
    position: absolute;
    top: 5vh;
    display: flex;
    justify-content: center;
    animation: main-new forwards;
    animation-timeline: scroll();
    animation-range: 0vh 60vh;
}

.main-new .scrolling div {
    border: #FFF 3px solid;
    border-radius: 100px;
    width: 1.3vw;
    height: 3vw;
}

.main-new .scrolling div div {
    margin: 0.22vw;
    margin-top: 1.9vw;
    width: 0.5vw;
    height: 0.5vw;
    border-radius: 100px;
    background-color: #FFF;
    animation: scrolling 2s forwards infinite;
}

.main-new .div h1 {
    -webkit-text-stroke: var(--border-color) 0.1vw;
    color: var(--main-h1-color);
    font-size: 5vw;
    font-family: Antipasto;
    margin-bottom: 0.5vw;
    margin-top: 0;
}

.main-new h2 {
    opacity: 50%;
    position: absolute;
    top: 10vh;
    text-align: center;
    animation: main-new forwards;
    animation-timeline: scroll();
    animation-range: 0vh 60vh;
    color: #FFF;
    font-size: 0.8vw;
}

.main-new .div p {
    color: #FFF;
    margin-top: -0.5vw;
    font-size: 1vw;
}

/* Main */
.main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    opacity: 1;
}

.main .profile_image {
    width: 36vw;
    height: fit-content;
    margin: 5vw;
    border-radius: var(--content-radius);

    box-shadow: var(--shadow-color);
}

.main .intro {
    width: 50vw;
    margin-top: 5vw;
    margin-bottom: 5vw;
    margin-right: 5vw;
    border-radius: var(--content-radius);

    background-image: var(--content-color);
    box-shadow: var(--shadow-color);
}

.main .intro .txt {
    margin: 3vw;
}

.main .intro .txt h1 {
    margin: -0.8vw;
    margin-left: 0;
    font-size: 5vw;
}

.main .intro .txt h2 {
    font-size: 2vw;
}

.main .intro .txt h3 {
    font-size: 1.17vw;
    line-height: 1.5vw;
}

.main .intro .button {
    margin-top: -1vw;
    margin-left: 3vw;
    margin-right: 3vw;
    display: flex;
    flex-direction: row;
    justify-content: start;
}

.main .intro .button a {
    margin-right: 1vw;
}

.main .intro .button a img {
    background-color: var(--border-color);
    color: var(--color);
    width: 2vw;
    padding: 0.7vw;
    border-radius: var(--button-radius);
    transition: transform 0.1s, box-shadow 0.1s;
}

.main .intro .button a img:hover {
    transform: scale(1.05);
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: var(--hover) 0 0 1vw;
}



/* Data Pribadi */
.data {
    margin: 5vw;
    margin-top: 0;
    margin-bottom: 5vw;
    padding: 3vw;
    padding-right: 0;
    padding-top: 1vw;
    padding-bottom: 0;
    border-radius: var(--content-radius);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background-image: var(--content-color);
    box-shadow: var(--shadow-color);
}

.data .title {
    display: flex;
    flex-direction: row;

}

.data .title h1 {
    margin-top: 2vw;
    font-size: 2vw;
    text-align: left;
}

.data .title p {
    margin: 1vw;
    margin-top: 3vw;
    font-size: 1vw;
}

.data .title a {
    font-size: 1.5vw;
    margin: 1.7vw;
    margin-left: 19vw;
    margin-right: 0;
    padding: 0.7vw;
    color: var(--color);
    background-color: var(--border-color);
    display: flex;
    border-radius: var(--button-radius);
    transition: transform 0.1s, box-shadow 0.1s;
}

.data .title a:hover {
    transform: scale(1.05);
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: var(--hover) 0 0 1vw;
}

.data .content {
    display: flex;
    flex-direction: row;
    margin-right: 3vw;
    margin-left: -2.4vw;
}

.data .content .list {
    display: flex;
    flex-direction: column;
    list-style: none;
    font-size: 1.17vw;
    line-height: 1.5vw;
    padding-left: 0;
    margin-right: 12vw;
}

.data .content div {
    width: 4vw;
    height: 6vw;
    transform: translateY(1vw) translateX(4vw);
    scale: 1.2;
    opacity: 50%;
    background-color: var(--border-color);
    margin-left: 24vw;
}

.data .content div p {
    color: var(--color);
    text-align: center;
    font-size: 1vw;
    opacity: 100%;
}



/* Progres */
.progres {
    margin: 5vw;
    margin-top: 0;
    padding: 1vw;
    padding-left: 2vw;
    padding-right: 2vw;
    border-radius: var(--content-radius);

    background-color: var(--progres-background-color);
    box-shadow: var(--shadow-color);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    transition: transform 0.1s, box-shadow 0.1s;
}

.progres:hover {
    transform: scale(1.05);
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: var(--progres-background-color) 0 0 1vw;
}

.progres h1 {
    font-size: 1.17vw;
    color: var(--progres-color);
}

.persen{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.bg_strip {
    margin-top: 1.1vw;
    margin-right: 1.5vw;
    width: 24vw;
    height: 0.5vw;
    background-color: var(--progres-strip);
    border-radius: 100px;
}

.bg_strip .strip {
    width: 30%;
    height: 0.5vw;
    border-radius: 100px;
    background-color: var(--progres-color);
}



/* Gallery */
.gallery {
    margin: 5vw;
    margin-top: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.gallery .text {
    font-size: 2vw;
    width: 46.2vw;
    height: 21.5vw;
    padding: 3vw;
    padding-top: 1vw;
    margin-right: 6vw;
    border-radius: var(--content-radius);

    background-image: var(--content-color);
    box-shadow: var(--shadow-color);
}

.gallery .text h1 {
    font-size: 3vw;
}

.gallery .text h3 {
    font-size: 1.17vw;
    line-height: 1.5vw;
    width: 25vw;
}

.gallery .text .link {
    display: flex;
    flex-direction: row;
    justify-content: end;
    margin-top: 5vw;
}

.gallery .text .link a {
    text-align: Left;
    font-size: 1.5vw;
    width: 8vw;
    padding: 0.7vw;
    color: var(--color);
    background-color: var(--border-color);
    display: flex;
    border-radius: var(--button-radius);
    transition: transform 0.1s, box-shadow 0.1s;
}

.gallery .text .link a:hover {
    transform: scale(1.05);
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: var(--hover) 0 0 1vw;
}

.gallery .img {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 47vw;
    margin: -1vw;
    margin-top: -0.5vw;
}

.gallery .img img {
    width: 12vw;
    margin: 0.5vw;
    border-radius: var(--content-radius);

    box-shadow: var(--shadow-color);
}



/* List */
.list {
    margin: 2.5vw;
    margin-top: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--content-radius);

    background-image: var(--content-color);
    box-shadow: var(--shadow-color);
    text-align: center;
    width: 100%;
    padding: 3vw;
    padding-top: 1vw;
    margin: 2.5vw;
    margin-top: 0;
}

#content h1 {
    font-size: 2vw
}

#content h3 {
    font-size: 1.17vw;
    line-height: 1.5vw;
    margin-bottom: 3vw;
}

#content a {
    text-align: center;
    font-size: 1.5vw;
    padding: 0.7vw;
    bottom: 0;
    color: var(--color);
    background-color: var(--border-color);
    border-radius: var(--button-radius);
    transition: transform 0.1s, box-shadow 0.1s;
}

#content a:hover {
    transform: scale(1.05);
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: var(--hover) 0 0 1vw;
}



/* Store */
.store {
    margin: 5vw;
    margin-top: 0;
    display: flex;
    flex-direction: row;
}

.store img {
    width: 12vw;
    height: 12vw;
    border-radius: var(--content-radius);

    box-shadow: var(--shadow-color);
}

.store .attribute {
    margin-left: 5vw;
    width: 75.3vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-radius: var(--content-radius);

    background-color: var(--store-background-color);
    box-shadow: var(--shadow-color);
}

.store .attribute .text {
    padding: 3vw;
    padding-top: 1vw;
    height: 8vw;
    width: 40vw;
    color: var(--store-color);
}

.store .attribute .text h1 {
    font-size: 2vw
}

.store .attribute .text h3 {
    font-size: 1.17vw;
    line-height: 1.5vw;
}

.store .attribute a {
    text-align: center;
    font-size: 1.5vw;
    padding: 0.7vw;
    margin: 3vw;
    margin-top: 4.3vw;
    bottom: 0;
    color: var(--store-background-color);
    background-color: var(--store-color);
    border-radius: var(--button-radius);
    height: 1.6vw;
    transition: transform 0.1s, box-shadow 0.1s;
}

.store .attribute a:hover {
    transform: scale(1.05);
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: var(--hover) 0 0 1vw;
}



/* Channel */
.channel {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-radius: var(--content-radius);

    background-image: var(--content-color);
    box-shadow: var(--shadow-color);
    padding: 3vw;
    padding-top: 1vw;
    margin: 5vw;
    margin-top: 0;
}

.channel .text {
    text-align: left;
    width: 40vw;
}

.channel .text h1 {
    font-size: 2.5vw
}

.channel .text h3 {
    font-size: 1.17vw;
    line-height: 1.5vw;
}

.channel .text .button {
    display: flex;
    margin-top: 6.5vw;
}

.channel .text .button .Subscribe {
    border-radius: var(--button-radius);
    color: var(--color);
    background-color: var(--channel);
    text-align: center;
    font-size: 1.5vw;
    padding: 0.7vw;
    margin-right: 1vw;
}

.channel .text .button .Kunjungi {
    border-radius: var(--button-radius);
    color: var(--color);
    background-color: var(--border-color);
    text-align: center;
    font-size: 1.5vw;
    padding: 0.7vw;
}

.channel .text .button #button {
    transition: transform 0.1s, box-shadow 0.1s;
}

.channel .text .button #button:hover {
    transform: scale(1.05);
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: var(--hover) 0 0 1vw;
}

.channel iframe {
    width: 35vw;
    height: 19.688vw;
    margin-top: 2vw;
    border-radius: var(--content-radius);
    border: 0.15vw solid var(--border-color);
}



/* Article */
body article {
    margin: 5vw;
    margin-top: 0;
    padding-top: 0.5vw;
    padding-bottom: 0.5vw;
    border-radius: var(--content-radius);

    background-image: var(--content-color);
    box-shadow: var(--shadow-color);
    text-align: center;
}

body article h1 {
    font-size: 3vw;
    margin-bottom: 3vw;
}

body article h3 {
    font-size: 1.17vw;
    line-height: 1.5vw;
    width: 50vw;
}

body article div div ul {
    display: flex;
    flex-direction: column;
    text-align: left;
    list-style: none;
    font-size: 1.17vw;
    line-height: 1.5vw;
    padding-left: 0;
    margin-right: 12vw;
}

body article img {
    border-radius: var(--button-radius);
    border: 0.15vw solid var(--border-color);
    background-color: var(--border-color);
    width: 25vw;
    height: 25vw;
}

body article #article {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    margin: 3vw;
    margin-top: 0;
}

body article #article1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: right;
    margin: 3vw;
    margin-top: 0;
}




/* Render */
.render {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-radius: var(--content-radius);

    background-image: var(--content-color);
    box-shadow: var(--shadow-color);
    padding: 3vw;
    padding-top: 1vw;
    margin: 5vw;
    margin-top: 0;
}

.render .text {
    text-align: left;
    width: 40vw;
}

.render .text h1 {
    font-size: 2.5vw
}

.render .text h3 {
    font-size: 1.17vw;
    line-height: 1.5vw;
}

.render .text .button {
    display: flex;
    margin-top: 6.5vw;
}

.render .text .button .Subscribe {
    border-radius: var(--button-radius);
    color: var(--color);
    background-color: var(--channel);
    text-align: center;
    font-size: 1.5vw;
    padding: 0.7vw;
    margin-right: 1vw;
}

.render .text .button .Kunjungi {
    border-radius: var(--button-radius);
    color: var(--color);
    background-color: var(--border-color);
    text-align: center;
    font-size: 1.5vw;
    padding: 0.7vw;
}

.render .text .button #button {
    transition: transform 0.1s, box-shadow 0.1s;
}

.render .text .button #button:hover {
    transform: scale(1.05);
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: var(--hover) 0 0 1vw;
}

.render iframe {
    width: 35vw;
    height: 19.688vw;
    margin-top: 2vw;
    border-radius: var(--content-radius);
    border: 0.15vw solid var(--border-color);
}



/* Proyek */
.project .title {
    display: flex;
    flex-direction: column;
    margin: 5vw;
    margin-top: 0;
    margin-bottom: 0;
    padding: 3vw;
    padding-top: 1vw;
    padding-left: 20vw;
    padding-right: 20vw;
    border-radius: var(--content-radius);

    background-image: var(--content-color);
    box-shadow: var(--shadow-color);
    text-align: center;
}

.project .title h1 {
    font-size: 3vw;
}

.project .title h3 {
    font-size: 1.17vw;
    line-height: 1.5vw;
    margin-bottom: 3vw;
}

.project .title a {
    border-radius: var(--button-radius);
    color: var(--color);
    background-color: var(--border-color);
    text-align: center;
    font-size: 1.5vw;
    margin-left: 18vw;
    padding: 0.7vw;
    width: 11vw;
    transition: transform 0.1s, box-shadow 0.1s;
}

.project .title a:hover {
    transform: scale(1.05);
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: var(--hover) 0 0 1vw;
}

.project #row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 2.5vw;
}

.project #row div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 27%;
    height: 19vw;
    margin: 2.5vw;
    border-radius: var(--content-radius);

    background-image: var(--content-color);
    box-shadow: var(--shadow-color);
    text-align: center;

    transition: transform 0.2s, padding 0.2s, margin 0.2s;
}

.project #row div.hover {
    transform: scale(1.1);
    transition: transform 0.2s, padding 0.2s, margin 0.2s;
    padding-bottom: 5vw;
    margin-bottom: -5vw;
    margin-top: -2vw;
}

.project #row div h1 {
    font-size: 2vw;
}

.project #row div img {
    width: 21vw;
    margin: 2vw;
    margin-top: 0;
    border-radius: var(--button-radius);
    border: 0.15vw solid var(--border-color);
}

.project #row div a {
    visibility: hidden;
    opacity: 0;
}

.project #row div.hover a {
    visibility: visible;
    opacity: 1;
    border-radius: var(--button-radius);
    color: var(--color);
    background-color: var(--border-color);
    text-align: center;
    font-size: 1.5vw;
    padding: 0.7vw;
    margin-left: 0.8vw;
    margin-right: 0.9vw;
    margin-top: 0;
    scale: 0.9;
    transition: transform 0.1s, box-shadow 0.1s, opacity 0.1s linear 0.2s;
}

.project #row div.hover a:hover {
    transform: scale(1.05);
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: var(--hover) 0 0 1vw;
}



/* Masukan dan Saran */
.suggestions {
    margin: 5vw;
    margin-bottom: 0;
    margin-top: 0;
    padding: 3vw;
    padding-top: 1vw;
    padding-bottom: 1vw;
    border-radius: var(--content-radius);

    display: flex;
    flex-direction: row;
    justify-content: space-between;

    background-image: var(--content-color);
    box-shadow: var(--shadow-color);
}

.suggestions .text {
    width: 30vw;
}

.suggestions .text h1 {
    font-size: 3vw;
    text-align: left;
}

.suggestions .text h3 {
    font-size: 1.17vw;
    line-height: 1.5vw;
    margin-bottom: 3vw;
    text-align: left;
}

.suggestions .form {
    display: flex;
    flex-direction: column;
    margin-top: 1vw;
}

.suggestions .form input {
    background-color: var(--form-color);
    border: none;
    border-radius: var(--button-radius);
    padding: 0.7vw;
    margin: 0.8vw;
    margin-right: 0;
    font-size: 1vw;
}

.suggestions .form input:focus {
    background-color: var(--form-color);
    border: none;
    border-color: var(--color);
    border-radius: var(--button-radius);
    padding: 0.7vw;
    margin: 0.8vw;
    margin-right: 0;
    font-size: 1vw;
}

.suggestions .form textarea {
    background-color: var(--form-color);
    border: none;
    border-radius: var(--button-radius);
    padding: 0.7vw;
    margin: 0.8vw;
    margin-right: 0;
    font-size: 1vw;
    resize: none;
}

.suggestions .form textarea:focus {
    background-color: var(--form-color);
    border: none;
    border-color: var(--color);
    border-radius: var(--button-radius);
    padding: 0.7vw;
    margin: 0.8vw;
    margin-right: 0;
    font-size: 1vw;
    resize: none;
}

.suggestions .form a {
    border-radius: var(--button-radius);
    border: none;
    color: var(--color);
    background-color: var(--border-color);
    text-align: center;
    font-size: 1.5vw;
    padding: 0.7vw;
    margin-top: 1vw;
    margin-bottom: 1vw;
    margin-left: 0.7vw;
    width: 41.4vw;
    transition: transform 0.1s, box-shadow 0.1s;
}

.suggestions .form a:hover {
    transform: scale(1.05);
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: var(--hover) 0 0 1vw;
}



/* Fotter */
.footer {
    background-color: var(--border-color);
    /* box-shadow: var(--shadow-color); */
    color: var(--background-color);
    text-shadow: 0 0 0px var(--border-color);
    margin: 2vw;
    margin-top: 5vw;
    padding: 3vw;
    padding-top: 1vw;
    padding-bottom: 3vw;
    border-radius: var(--content-radius);
}

.footer h1 {
    font-size: 2vw;
    text-align: left;
}

.footer p {
    margin: 1vw;
    font-size: 1vw;
}

.footer a {
    margin: 1vw;
    font-size: 1vw;
    color: var(--background-color);
}

.footer ul {
    display: grid;
    margin-right: 5vw;
}

.footer ul li {
    margin-left: 2vw;
    margin-bottom: 0.5vw;
}

.footer ul li a {
    margin: 0;
    font-size: 1vw;
}

.footer .link {
    display: flex;
    flex-direction: row;
}

.footer .content a {
    font-size: 1vw;
    text-align: left;
    color: var(--background-color);
    margin-left: 1vw;
}

.footer .title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer .title p {
    margin: 1vw;
    margin-top: 2vw;
}

.footer .title div {
    display: flex;
    flex-direction: row;
}

.footer .title img {
    margin-right: -1vw;
    margin-top: 0.5vw;
    height: 4vw;
    width: auto;
}

.footer .content {
    display: flex;
    flex-direction: row;
}

.footer .content .button {
    margin-left: 0;
    margin-right: 3vw;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.footer .content .button a {
    margin-right: 0;
    background-color: var(--border-color);
    width: auto;
    height: 3.45vw;
    border-radius: var(--button-radius);
}

.footer .content .button a img {
    background-color: var(--background-color);
    color: var(--color);
    width: 2vw;
    padding: 0.7vw;
    border-radius: var(--button-radius);
    transition: transform 0.1s, box-shadow 0.1s;
}

.footer .content .button a img:hover {
    transform: scale(1.05);
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: var(--hover) 0 0 1vw;
}

}