*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background: #eeee00;
    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{
    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;
    }
}