@import url('https://fonts.googleapis.com/css2?family=Cookie&family=Poppins:wght@400;600&display=swap');

:root {
    --textColor: #FFFFFF;
    --font: 'Poppins', sans-serif;
    --coffeeFont: 'Cookie', cursive;
    --coffeeYellow: #FFDD00;
    --coffeeText: #000000;
}

* {
 outline: none;
 box-sizing: border-box;
}

html {
    margin: 0;
    height: 100%;
    
    /*background-image: url('https://ik.imagekit.io/alisa/bg.png');*/
    background-image: url('images/bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: relative;
   
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;

    font-family: var(--font);
    font-weight: 400;
    color: var(--textColor);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    height: fit-content;
    min-height: 100%;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: center;
    box-sizing: border-box;
  
    color: var(--textColor);
}

.card {
  width: fit-content;
  height: fit-content;
  display: block;
  flex-direction: column;
  justify-content: space-between;
    
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 50px;
  margin-top: 50px;
  padding: 10px; 
  position: center;
    
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 20px;

  background-color: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.25);
    
  backdrop-filter: blur(15px);
    
  box-sizing: inherit;
}

.userName {   
    color: var(--textColor);
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    margin: 10px auto;
}

.description {
    color: var(--textColor);
    text-align: center;
    margin: 27px auto;
    margin-top: 10px;
    font-weight: 400;
    weight: 90%;
    max-width: 500px;
}

.profilePicture, .profilePicture img {
    position: relative;
    width: 130px;
    height: 130px;
    display: block;
    margin: 35px auto 25px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-tap-highlight-color: transparent;
}

.links {
    max-width: 675px;
    width: 100%;
    display: block;
    margin: 27px auto;
    font-weight: 400;
}

.link {
    position: relative;
    background-color: transparent;
    color: var(--textColor);
    border-style: solid; 
    border-color: var(--textColor);
    border-width: 2px;
    border-radius: 10px;
    text-align: center;
    display: block;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.coffee {
    position: relative;
    font-family: var(--coffeeFont);
    font-size: 24px;
    background-color: var(--coffeeYellow);
    text-color: var(--coffeeText);
    border-style: solid; 
    border-color: var(--coffeeYelow);
    color: var(--coffeeText);
    border-width: 2px;
    border-radius: 10px;
    text-align: center;
    font-weight: 400;
    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 {
    color: var(--textColor);
    }
}

.link:active {
    background-color: transparent;
}

@media (hover: hover) {
    .coffee:hover {
    color: var(--coffeeYellow);
    }
}

.coffee:active {
    background-color: var(--coffeeYellow);
}

.icons {
  max-width: 675px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: center;
  margin: 10px auto;
  margin-bottom: 5px;
  padding: 10px;
  background-color: transparent;
  color: var(--textColor);
  box-sizing: border-box;
}

.icon {
  position: relative;
  background-color: transparent;
  color: var(--textColor);
  border-style: solid; 
  border-color: var(--textColor);
  border-width: 2px;
  border-radius: 10px;
  outline: 0;
  border:0;
  font-size: 1.5rem;
  text-align: center;
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px; 
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .icon:hover {
    color: var(--textColor);
    }
}

.icon:active {
    background-color: transparent;
}

/*.footer {
  font-family: var(--describeFont);
  font-weight: 400;
  font-size: 15px;
  color: var(--textColor);
  text-align: center;
  position: relative;
  bottom: 0;
  width: 100%;
}

.source {
    color: var(--coffeeYellow);
    background: none;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
   
@media (hover: hover) {
    .source:hover {
    color: var(--coffeeYellow);
    }
}

.source:active {
    background-color: transparent;
}*/
