html {
    background-color: #5f45bb;
    background-image: linear-gradient(to bottom right, #180cac, #d054e4);
    color: #fff;
    font-family: "Quicksand", sans-serif;
    font-size: 16px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    min-height: 100vh;
    min-width: 300px;
    overflow-x: hidden;
    overflow-y: auto;
    text-shadow: 0 3px 5px rgba(0, 0, 0.1);
}

html, body {
  /*overflow-x: hidden;*/
  /*overflow-y: auto;*/
  height: auto;
  min-height: 100%;
  /*overflow-x: hidden;*/
}

a {
    color: currentColor;
    cursor: pointer;
    text-decoration: none;
}

/* 2. shared */

.wallpaper {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

/* 3. specific */

.wallpaper {
    width: 100%;
    height: 100%;
    background-image: url("../image/sawah.jpg");
    background-position: center;
    background-size: cover;
    opacity: 0.2;
    pointer-events: none;
    z-index: -1;
}

.content {
    display: flex;
    position: relative;
    min-height: 100vh;
    flex-direction: row;
    padding: 5rem 8rem;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap; /* ini penting */
    overflow-x: hidden;
}

.side {
    max-height: 20rem;
    max-width: 20rem;
}

.about {
    max-width: 50rem;
    margin-top: 3rem;
    margin-left: 3rem;
}

.picture {
    padding-top: 0%;
    position: relative;
    width: 100%;
}

.picture-shadow {
    border-radius: 290486px;
    /*background-image: radial-gradient(#000 0%, rgba(0, 0, 0) 70%);*/
    position: relative;
    top: 10%;
}

.picture-image {
    border-radius: 290486px;
    position: relative;
    margin-top: 0.5rem;
}

/* 4. responsif */

@media screen and (min-width: 1025px) {
  .content {
    flex-direction: row;
    padding: 5rem 8rem;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .about {
    max-width: 50rem;
    margin-top: 3rem;
    margin-left: 3rem;
  }

  .contact {
    display: inline-block;
    margin-top: 2rem;
  }

  .button {
    display: inline-block;
  }
}


/* 3. Mobile (small devices) - 600px ke bawah */
@media screen and (max-width: 600px) {
    .content {
        flex-direction: column;
        padding: 1rem 1rem;
        align-items: center;
    }

    .side {
        width: 100%;
        margin-bottom: 1rem;
    }

    .about {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
        box-sizing: border-box;
    }

    .hr {
        width: 100%;
    }
    
    .content {
        overflow-x: hidden;
    }
}
  

:global(html), :global(body) {
  height: auto;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}

.wallpaper,
.picture-shadow,
.picture-image {
    display: block;
    height: 100%;
    left: 1rem;
    top: 1rem;
    width: 100%;
}

.name {
    font-size: 2.25rem;
    line-height: 1.125;
    margin-bottom: 0.5rem;
}

.job,
.button {
    font-family: "Montserrat", "Quicksand", sans-serif;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
}

.job {
    color: #ffe479;
    font-size: 1rem;
}

.hr {
    background-color: #ff470f;
    border: none;
    content: "";
    height: 1px;
    margin-bottom: 1.0rem;
    margin-top: 1.5rem;
    transform-origin: center left;
    width: 50%;
}

.description {
    font-size: 1rem;
}

.contact {
    display: inline-block;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    vertical-align: top;
}

.button,
.social a {
    transform-origin: center;
    transition-duration: 100ms;
}

.button {
    background-color: #fff;
    border-radius: 290486px;
    border: 2px solid red;
    box-shadow: 0 0.5rem rgba(0, 0, 0, 0.1);
    color: #9013fe;
    display: inline-block;
    font-size: 0.875rem;
    line-height: 1;
    padding: 1.25em 2em;
    text-shadow: none;
    transition-property: box-shadow, transform;
    user-select: none;
    vertical-align: top;
    white-space: nowrap;
    will-change: box-shadow, transform;
}

.button:hover {
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
    transform: scale(1.02) translate(-4px);
}

.button:active {
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
    transform: scale(0.98) translate(-2px);
}

.social {
    display: flex;
    margin-top: 2.0rem;
}

.social li {
    height: 2rem;
    margin-right: 0.5rem;
    text-align: center;
    width: 2rem;
}

.social a {
    align-items: center;
    display: flex;
    font-size: 1.5rem;
    height: 2rem;
    justify-content: center;
    opacity: 0.5;
    transition-property: opacity, transform;
    width: 2rem;
    will-change: opacity, transform;
}

.social:hover {
    opacity: 1;
    transform: scale(1.25);
}

.social:active {
    opacity: 1;
    transform: scale(1.1);
}

