
/* Header */

.head-img {
    background: linear-gradient(to bottom, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, .7) 75%, #ffffff 100%), url("/media/background.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
}

.logo{
    position: fixed;
    width: 180px;
    height: 180px;
    margin-left: -90px;
    margin-top: -90px;
}

.down-arrow {
    position: fixed;
    width: 50px;
    height: 50px;
    left: 50%;
    right: 50%;
    margin-left: -25px;
    margin-top: -25px;
    bottom: 10%;
    -moz-animation: down-arrow-anim 5s ease-in-out infinite;
    -webkit-animation: down-arrow-anim 5s ease-in-out infinite;
    animation: down-arrow-anim 5s ease-in-out infinite;
}

@-webkit-keyframes down-arrow-anim {
  0% {-webkit-transform:translateY(-10px)}
  25% {-webkit-transform:translateY(10px)}
  100% {-webkit-transform:translateY(-10px)}
}
@-moz-keyframes down-arrow-anim {
  0% { -moz-transform:translateY(-10px)}
  25% { -moz-transform:translateY(10px)}
  100% { -moz-transform:translateY(-10px)}
}
@keyframes down-arrow-anim {
  0% { transform:translateY(-10px)}
  25% { transform:translateY(10px)}
  100% { transform:translateY(-10px)}
}

/* Art and Science */

.carousel-indicators {
    top: -2.5em;
    height: 2.5em;
}

.hoover-zoom:hover, .hoover-zoom:visited, .hoover-zoom:link, .hoover-zoom:active {
    text-decoration: none;
}

.hoover-zoom:hover img {
    opacity: 0.5;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -moz-transform: scale(1.035);
    -webkit-transform: scale(1.035);
    transform: scale(1.035);
}

.project-img {
    width: 75%;
    max-width: 150px;
    object-fit: cover;
}

/* Misc */

ul {
    margin-block-start: 0em;
    margin-block-end: 0em;
    padding-inline-start: 30px;
}

.link {
    text-decoration: none;
}
.link:hover {
    text-decoration: underline;
    text-underline-offset: .2em;
}

.link-img {
    height: 18px;
    display: inline-block;
    opacity: 0.63;
}
.link-img:hover {
    opacity: 1;
}

.link-img-none {
    height: 18px;
    display: inline-block;
    opacity: 0.2;
}

/* Publications */

.publication-links a {
    text-decoration: none;
}

.bibtex-img {
    height: 18px;
    display: inline-block;
    opacity: 0.63;
}
.bibtex-img-none {
    height: 18px;
    display: inline-block;
    opacity: 0.2;
}
.bibtex-img:hover, .bibtex-img:active {
    opacity: 1;
}
.bibtex-success{
    content: url("/media/icons/bibtex-done.svg");
}

/* Footer */

.up-arrow {
    height: 30px;
    opacity: 0.63;
}
.up-arrow:hover {
    opacity: 1;
}

.social a {
    text-decoration: none;
    margin-left: 7px;
    margin-right: 7px;
}

.social-img {
    width: 20px;
    height: 20px;
    margin-top: -2px;
    display: inline-block;
    opacity: 0.63;
}
.social-img:hover {
    opacity: 1;
}

/* Projects */

.labs-a:hover, .labs-a:visited, .labs-a:link, .labs-a:active {
    text-decoration: none;
}

.labs-img {
    height: 50px;
    opacity: 0.63;
}
.labs-img:hover {
    opacity: 1;
}
