body {
    background: black;
    color: #fff;
    //font-family: "Open Sans", sans-serif;
    font-family: 'Dongle';font-size: 22px;

//    font-size: 12px;
//    letter-spacing: 2px;
}
img {
    border-radius: 70%;
}
.profile-picture {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
    height: auto;
    max-width: 100px;
}
.profile-name {
    @font-face {
        font-family: "aga_kyrawan_v.2_regular";
        src:
            url("assets/font/agakyrawanv2qyrwn-a836-webfont.woff2")
                format("woff2"),
            url("assets/font/agakyrawanv2qyrwn-a836-webfont.woff")
                format("woff");
    }
    font-weight: normal;
    font-style: normal;
    text-align: center;
    padding: 20px;
}
.quote {
    @font-face {
        font-family: "aga_kyrawan_v.2_regular";
        src:
            url("assets/font/agakyrawanv2qyrwn-a836-webfont.woff2")
                format("woff2"),
            url("assets/font/agakyrawanv2qyrwn-a836-webfont.woff")
                format("woff");
    }
    font-weight: normal;
    font-style: italic;
    text-align: center;
    padding: 20px;
}
.links {
    text-align: center;
    margin-top: 10px;
    padding: 5px;
    border: 0.5px solid white;
    border-width: 0px;
    width: 290px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0px;
    transform: skewX(-5deg); /* Skew horizontally by 10 degrees */
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5); /* Text shadow effect */

}

a {
    text-decoration: none;
    color: white;
    transition: color 1s;
}
.bottom-text {
    text-align: center;
    margin-top: 40px;
    font-size: 15px;
    font-weight: bold;
}
a:hover {
    color: #000;
    background: #fff;
    box-shadow: inset 0px 0px 10px #000;
}

/*popup*/
.modal-close {
    text-align: center;
    background-color: black;
    color: black;
}
.modal-window {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.25);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    &:target {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
    & > div {
        width: 50%;
        position: absolute;
        top: 50%;
        line-height: 40px;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 2em;
        background: #000;
    }
}
