@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');

:root {
    --bgColor: #fff;
    --bgColor2: #090a0f;
    --accentColor: #0CB8E7;
    --accentColor2: #18A6E0;
    --fontColor: #fff;
    --font: 'Karla', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    /*min-height: 100vh;*/
    font-family: var(--font);
    /*background-image: url('../images/bg.jpg');*/
    background-size: cover;
    animation: 1s ease-out var(--delay) 1 transitionAnimation; /* duration/timing-function/delay/iterations/name */
    animation-fill-mode: forwards;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

#profilePicture, #profilePicture img {
    position: relative;
    width: 96px;
    height: 96px;
    display: block;
    margin: 40px auto 20px;
    -webkit-tap-highlight-color: transparent;
}

#userName {
    color: var(--accentColor2);
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
}

#social {
  display: flex;
  margin: 27px auto;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.link-social {
  background-color: rgba(0, 15, 30, 0.2);
  color: #5A4B42;
  text-align: center;
  height: 22px;
  width: 22px;
  border-radius: 50%;
  padding: 5px;
  font-size: 16px;
  line-height: 16px;
  margin-left: 2px;
  margin-right: 2px;
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}

#links {
    max-width: 275px;
    width: auto;
    display: block;
    margin: 27px auto;
}

.link {
    position: relative;
    background-color: transparent;
    color: var(--fontColor);
    background-color: var(--accentColor);
    border: solid var(--accentColor) 2px;
    border-radius: 23.5px;
    font-size: 1.2rem;
    text-align: center;
    display: block;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px; /* 17px */
    text-decoration: none;
    /* transition: all .25s cubic-bezier(.08, .59, .29, .99); */
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .link:hover {
        background-color: var(--accentColor2);
        border: solid var(--accentColor2) 2px;
        color: var(--bgColor);
    }
}

.link:active {
    background-color: var(--accentColor);
    color: var(--bgColor);
}

@media (hover: hover) {
    .popup-close:hover {
        background-color: var(--accentColor);
        color: var(--bgColor);
    }
}
