*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background: #eee;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Outfit", sans-serif;
    padding-top: 4rem;
    gap: 1rem;
}

.my-photo{
    width: 6rem;
    border-radius: 50%;
}

a{
    text-decoration: none;
    color: inherit;
}

.sosmed i{
    font-size: 1.4rem;
}

.sosmed a:not(:last-child){
    margin-right: 1rem;
}

ul{
    width: 80%;
    max-width: 40rem;
}

ul li{
    list-style: none;
}

ul li:not(:last-child){
    margin-bottom: 1rem;
}

.link-card{
    display: flex;
    background-color: #ffff80;
    justify-content: space-between;
    align-items: center;
    padding: .3rem;
    border-radius: 20px;
    box-shadow: 2px 2px 10px black;
    border: 2px solid #ffff80;
}

.link-card:hover{
    border: 2px solid black;
}

.link-icon{
    color: white;
    background-image: linear-gradient(to top, blue, red);
    padding: .4rem;
    border-radius: 7px;
    align-items: center;
    margin-left: 10px;
}

.link-action{
    cursor: pointer;
    padding: 10px;
}

.copyright{
    color: black;
    opacity: 0.7;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 0;
    margin-bottom: 20px;
}

.copyright img{
    width: 3rem;
}

#toast{
    width: max-content;
    position: fixed;
    top: 0;
}

.toast-container{
    background: #ffff80;
    color: black;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    animation: muncul 300ms ease-in-out;
}

.toast-gone{
    animation: hilang 1s ease-in-out 1s;
}

@keyframes muncul {
    from {
        opacity: 0;
        transform: translateY(-4rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hilang {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* button */
/*bg*/
/*txt*/
/*success*/
  .buttons {
    display: flex;
    justify-content: space-around;
    top: 20px;
    left: 20px;
  }
  
  .buttons button {
    width: 150px;
    height: 40px;
    background-color: white;
    margin: 20px;
    color: black;
    opacity: 0.7;
    position: relative;
    overflow: hidden;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
  }
  
  .buttons button:before, .buttons button:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #ffe100;
    transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
  }
  
  .buttons button:before {
    right: 0;
    top: 0;
    transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
  }
  
  .buttons button:after {
    left: 0;
    bottom: 0;
  }
  
  .buttons button span {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  
  .buttons button span:before, .buttons button span:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 0;
    background-color: #ffe100;
    transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
  }
  
  .buttons button span:before {
    right: 0;
    top: 0;
    transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
  }
  
  .buttons button span:after {
    left: 0;
    bottom: 0;
  }
  
  .buttons button p {
    padding: 0;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .buttons button p:before, .buttons button p:after {
    position: absolute;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
    z-index: 1;
    left: 0;
  }
  
  .buttons button p:before {
    content: attr(data-title);
    top: 50%;
    transform: translateY(-50%);
  }
  
  .buttons button p:after {
    content: attr(data-text);
    top: 150%;
    color: black;
  }
  
  .buttons button:hover:before, .buttons button:hover:after {
    width: 100%;
  }
  
  .buttons button:hover span {
    z-index: 1;
  }
  
  .buttons button:hover span:before, .buttons button:hover span:after {
    height: 100%;
  }
  
  .buttons button:hover p:before {
    top: -50%;
    transform: rotate(5deg);
  }
  
  .buttons button:hover p:after {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .buttons button.start {
    background-color: #ffe100;
    box-shadow: 0px 5px 10px -10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
  }
  
  .buttons button.start p:before {
    top: -50%;
    transform: rotate(5deg);
  }
  
  .buttons button.start p:after {
    color: white;
    transition: all 0s ease;
    content: attr(data-start);
    top: 50%;
    transform: translateY(-50%);
    animation: start 0.3s ease;
    animation-fill-mode: forwards;
  }
  
  @keyframes start {
    from {
      top: -50%;
    }
  }
  
  .buttons button.start:hover:before, .buttons button.start:hover:after {
    display: none;
  }
  
  .buttons button.start:hover span {
    display: none;
  }
  
  .buttons button:active {
    outline: none;
    border: none;
  }
  
  .buttons button:focus {
    outline: 0;
  }

  .input-focus {
    outline: none;
    transition: box-shadow 0.2s ease-in-out;
    color: black;
    opacity: 0.6;
  }

  .input-focus:focus {
    border: 1px solid rgb(255, 225, 0);
    box-shadow: 0 0 0 2px rgba(255, 225, 0, 0.2);
  }