@font-face {
    font-family: "0xProto";
    src: local("0xProto Nerd Font"),
        url("fonts/0xproto_regular.ttf") format("truetype");
}

@font-face {
    font-family: "Libertine";
    line-height: normal;
    src: local("Linux Libertine Capitals"),
        url("fonts/LinLibertine_R.ttf") format("truetype");
}

@font-face {
    font-family: "Compagnon";
    src: url("fonts/compagnon.medium.otf") format("opentype");
}

* {
    color: #fafafa;
    padding: 0;
    margin: 0;
    font-family: "Compagnon", sans-serif;
}

#img-bg {
    z-index: -2;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;

    background-image: url('https://images.pexels.com/photos/846980/pexels-photo-846980.jpeg');
    background-size: cover;
    filter: grayscale();
    opacity: 10%;
}

body {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* background: #ffffff; */
    background: #111;
    /* background: radial-gradient(circle, rgba(255, 255, 255, 1) 4%, rgba(255, 191, 0, 1) 8%, rgba(183, 138, 16, 1) 16%, rgba(148, 115, 23, 1) 21%, rgba(111, 94, 31, 1) 30%, rgba(71, 60, 40, 1) 50%, rgba(26, 21, 0, 1) 65%); */
    background-size: 100% 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    /* filter: blur(16px); */

    justify-items: center;
}

#music-thumb-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* background-size: contain; */
    background-size: 100%;
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    filter: blur(128px);
    opacity: 20%;
    z-index: -1;
}

a {
    text-decoration: none;
}

.title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
}

.title p {
    /* padding: 16px; */
    align-self: flex-end;
    text-align: center;
    height: 128px;
    line-height: 1.5;
}

.title .pronuncial {
    position: absolute;
    font-size: 80px;
    padding-left: 8px;
    padding-right: 8px;
    
    background-color: #0007;

    font-family: "Libertine", serif;
    opacity: 0;
    transition: opacity 0.2s 0s linear;
}

.title:hover .textual {
    opacity: 0;
}

.title .textual {
    opacity: 1;
    transition: opacity 0.2s 0s linear;
    /* line-height: 1.8; */
}

.title:hover .pronuncial {
    opacity: 1;
}

#music {
    width: 384px;
}

#music-thumb-glow {
    position: absolute;
    
    filter: blur(128px) brightness(150%) contrast(120%);
    mix-blend-mode: screen;
    /* opacity: 80%; */

    
    top: 13%;
    left: 50%;
    right: 50%;
    transform: translate(-50%, 0);
    width: fit-content;
    pointer-events: none;
    opacity: 50%;
    /* z-index: -1; */
}

#music-thumb {
    /* filter: drop-shadow( 17px 17px 17px #ffff ); */
    /* box-shadow: 2px 2px 16px #000a; */
}

.link-table {
    display: flex;
    justify-self: center;
    justify-content: center;
}

.link {
    font-size: 72px;
    color: white;
    stroke: white;
    text-align: center;
    align-self: center;
    width: 100px;
}

.link.x {
    
}

.link.yt {

}

.link.steam {

}

.link.git {

}