@charset "utf-8";
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap);

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Main Styles */
body {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  background-attachment: fixed;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

h1 {
  margin: 10px 0;
  font-size: 26px;
  line-height: 1;
  color: #fff;
}

h2 {
  font-weight: 600;
  color: #fff;
  font-size: 18px;
  margin: 0 0 5px 0;
}

h2 strong {
  color: #00608b;
}

p {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.77);
}

/* Layout */
.hero_wrapper {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card.hovercard {
  position: relative;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  text-align: center;
  background-color: #03A9F4;
  margin: 0 auto;
}

.cardheader {
  background: #0797d8;
  height: 210px;
}

.avatar {
  position: relative;
  top: -160px;
  width: 300px;
  height: 300px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.5);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info {
  padding: 0 8px 22px;
  top: -50px;
  position: relative;
}

.bottom {
  padding: 0 20px;
  margin-bottom: 70px;
}

/* Animations */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

.delay-04s {
  animation-delay: 0.4s;
}

/* Social Links */
.social_links {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0;
}

.social_links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid #285d6b;
  border-radius: 50%;
  color: #00283a;
  transition: all 0.3s ease;
}

.social_links a:hover,
.social_links a:focus {
  background: #163840;
  color: #fff;
  border-color: #163840;
}

.social_links svg {
  width: 18px;
  height: 18px;
}

/* Footer */
.footer_wrapper {
  min-height: 8vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_bottom {
  padding: 25px 0;
  width: 100%;
  text-align: center;
}

.footer_bottom p {
  font-size: 14px;
  color: #efefef;
  margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
  .avatar {
    width: 250px;
    height: 250px;
    top: -130px;
  }
  
  .cardheader {
    height: 180px;
  }
  
  h1 {
    font-size: 22px;
  }
  
  h2 {
    font-size: 16px;
  }
}
