html, body {
    margin: 0;
    height: 100%;
    font-family: Arial, sans-serif
}

html {
    background-image: url('/img/rems1.jpg');
    background-size: cover;
}

body {
    background: linear-gradient(to bottom,rgba(0,0,0,0.6), rgba(255, 255, 255,0.6));
    background-size: 400% 400%;
    /*animation: gradient 8s ease infinite;*/
    padding-top: 35px;
    padding-bottom: 35px;
    height: fit-content;
    min-height: 100%;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

:root {
    --accentColor: #fbc52a;
    --delay: .3s;
}

.description, .source {
    color: white;
    text-align: center;
    margin: 27px auto;
    margin-top: 10px;
    width: 90%;
    max-width: 500px;
}

.source {
    font-size: small;
    margin-top: 50px;
}



.userName {
    color: #fff;
    font-size: x-large;
    font-weight: bold;
    line-height: 1.25;
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
}

.links {
    max-width: 675px;
    width: auto;
    display: block;
    margin: 27px auto;
}

.link {
    position: relative;
    background-color: var(--accentColor);
    color: #000;
    border: solid var(--accentColor) 2px;
    font-size: 1rem;
    text-align: center;
    display: block;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .link:hover {
        background-color: white;
        color: #000; /* Fallback for older browsers */
        color: rgba(0, 0, 0, 0.5);
        border: solid #fff 2px;
    }
}

.link:active {
    background-color: white;
    color: #000; /* Fallback for older browsers */
    color: rgba(0, 0, 0, 0.5);
}


img.profile {
    position: relative;
    width: 96px;
    height: 96px;
    padding:8px;
    display: block;
    margin: 30px auto 30px;
    border-radius: 50%;
    -webkit-tap-highlight-color: transparent;
    background-color:white;
}