@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body {
    height: 100vh;
    font-family:"Bebas Neue", sans-serif;
    font-size: 5vh;
    font-weight:bold;
    overflow-y: hidden;
    background-image: url(background.jpg);  /** Photo by @jrkorpa on unsplash.com **/
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

a {
    color:lightblue;
    text-decoration: none;
    line-height: 50%;
}

a img {
    margin: auto;
    height: 27.1vh;
    display: block;
}

a:hover {
    color:goldenrod;
}

.nx {
    background-image: url(nextcloud.png);
    background-size: contain;
    height: 27.1vh;
    width: 27.1vh;
}

.nx:hover {
    background-image: url(nextcloud-hover.png);
    background-size: contain;
    height: 27.1vh;
    width: 27.1vh;
}

.nxi {
    opacity: 1;
    transition: 0.6s;
}

.nxi:hover {
    opacity: 0;
}

.jf {
    background-image: url(jellyfin.png);
    background-size: contain;
    height: 27.1vh;
    width: 27.1vh;
}

.jf:hover {
    background-image: url(jellyfin-hover.png);
    background-size: contain;
    height: 27.1vh;
    width: 27.1vh;
}

.jfi {
    opacity: 1;
    transition: 0.6s;
}

.jfi:hover {
    opacity: 0;
}

.directory {
    display: flex;
    padding: 1px;
    border-radius: 10px;
    background-color: #3b004daa;
    text-align: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    min-width: 30vh;
    max-width: 40vw;
    min-height: 40vh;
    max-height: 60vh;
}
