@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
body {
  background-image: url('assets/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: blur(10px);
  z-index: -1;
}

body.blur::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    filter: blur(5px);
}
body.blur > *:not(.youtube-popup) {
    pointer-events: none;
}
.card {
  margin: 5px;
  padding: 10px;
  background-color: #2b2b2b;
  height: 600px;
  width: 350px;
  border: 0px solid transparent;
  border-radius: 25px;
  box-shadow: 1px 1px 30px 10px rgba(108, 107, 107, 0.253);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.spotify {
  margin: 5px;
  padding: 10px;
  background-color: #2b2b2b;
  position: fixed;
  top: 45%;
  left: 67%;
  height: 80px;
  width: 400px;
  border: 0px solid transparent;
  border-radius: 25px;
  box-shadow: 1px 1px 30px 10px rgba(108, 107, 107, 0.253);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  .spotify {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .card {
    padding: 5px;
    width: 250px;
    height: 550px;
    overflow-x: hidden;
    overflow-y: hidden;
  }
}
.card .profile__photo {
  padding: 25px;
  height: 150px;
  width: 300px;
  border-top: 1px;
  border-right: 1px;
  border-left: 1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.card .profile__photo img {
  height: 120px;
  width: 120px;
  box-shadow: 1px 1px 30px 10px rgba(108, 107, 107, 0.253);
  border-radius: 50%;
}
@media screen and (max-width: 480px) {
  .card .profile__photo img {
    height: 100px;
    width: 100px;
  }
}
.card .profile__photo .name {
  font-family: "Font Awesome 6 Pro", sans-serif;
  margin: 5px;
  color: white;
  font-size: 35px;
}
@media screen and (max-width: 480px) {
  .card .profile__photo .name {
    font-size: 17px;
  }
}
@media screen and (max-width: 480px) {
  .card .profile__photo {
    width: 200px;
    height: 150px;
    padding: 5px;
  }
}
.card .slogan {
  background-color: rgb(241, 224, 255);
  width: 280px;
  font-size: 16px;
  text-align: center;
  padding: 15px;
  border-radius: 15px;
  font-family: "Font Awesome 6 Pro", sans-serif;
}
@media screen and (max-width: 480px) {
  .card .slogan {
    width: 200px;
    padding: 10px;
    margin-top: 10px;
    font-size: 13px;
  }
}
.card .info__box {
  background-color: rgb(213, 255, 246);
  margin-top: 10px;
  border: 0px solid;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  width: 280px;
}
.card .info__box .info {
  padding: 3px;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}
.card .info__box .info img {
  height: 25px;
  width: 25px;
}
@media screen and (max-width: 480px) {
  .card .info__box .info img {
    height: 20px;
    width: 20px;
  }
}
.card .info__box .info .content {
  padding-left: 20px;
  font-size: 15px;
}
@media screen and (max-width: 480px) {
  .card .info__box .info .content {
    font-size: 11px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 480px) {
  .card .info__box {
    width: 200px;
    padding: 10px;
    margin-top: 10px;
    font-size: 13px;
  }
}
.card .skills {
  width: 280px;
  background-color: rgb(200, 222, 255);
  margin-top: 10px;
  border: 0px solid;
  border-radius: 15px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  padding: 15px;
  width: 280px;
}



@media screen and (max-width: 480px) {
  .card .skills {
    width: 200px;
    padding: 5px;
    margin-top: 10px;
  }
}
.card .skills .skill {
  margin-top: 3px;
  margin-bottom: 3px;
  background-color: rgb(223, 242, 255);
  border: 0px solid;
  border-radius: 25px;
  padding: 7px;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .card .skills .skill {
    padding: 5px;
    margin-top: 2px;
    margin-bottom: 2px;
    border-radius: 20px;
  }
}
.card .skills .skill img {
  height: 20px;
  width: 20px;
}
@media screen and (max-width: 480px) {
  .card .skills .skill img {
    height: 15px;
    width: 15px;
  }
}
.card .skills .skill .name {
  padding-left: 5px;
  font-size: 13px;
}
@media screen and (max-width: 480px) {
  .card .skills .skill .name {
    font-size: 11px;
  }
}
.card .skycube {
  margin-top: 10px;
  background-color: rgb(224, 246, 255);
  width: 280px;
  font-size: 16px;
  text-align: center;
  padding: 15px;
  border: 0px solid;
  border-radius: 15px;
  font-family: "Font Awesome 6 Pro", sans-serif;
  flex-direction: row;
  justify-content: start;
}
@media screen and (max-width: 480px) {
  .skycube {
    width: 200px;
    padding: 10px;
    margin-top: 10px;
    font-size: 13px;
  }
}
.card .link {
  width: 300px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 15px;
}
@media screen and (max-width: 480px) {
  .card .link {
    margin-top: 5px;
    width: 200px;
  }
}
.card .link img {
  height: 30px;
  width: 30px;
}
@media screen and (max-width: 480px) {
  .card .link img {
    height: 20px;
    width: 20px;
  }
}/*# sourceMappingURL=style.css.map */
.youtube-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.644);
    padding: 20px;
    border-radius: 10px;
    z-index: 1500;
    width: 400px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: popup-entry 0.6s;
}
.skycube-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.644);
    padding: 20px;
    border-radius: 10px;
    z-index: 1500;
    width: 400px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: popup-entry 0.6s;
}
.skycube-popup-button {
    color: black;
    background-color: rgb(224, 246, 255);
    display: flex;
    justify-content: space-around;
    padding: 5px;
    cursor: pointer;
    border-radius: 12px;
    max-width: 100px;
    margin: auto;
    margin-top: 10px;
    transform: scale(1);
    transition: transform 0.3s;
}
.skycube-popup-button:hover {
    transform: scale(1.1);
}
.skycube-popup-ip {
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-around;
    padding: 5px;
    cursor: pointer;
    border-radius: 12px;
    border: solid #000000 2px;
    max-width: 160px;
    margin: auto;
    margin-top: 10px;
    transform: scale(1);
    transition: transform 0.3s;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes animate
{
    0%
  {
    box-shadow: 0 0 0 0 rgba(0, 153, 255, 0.7), 0 0 0 0 rgba(0, 153, 255, 0.7);
  }
    100%
  {
    box-shadow: 0 0 0 0 rgba(0, 153, 255, 0.7), 0 0 0 15px rgba(255,4,0,0);
  }
}

.skycube-popup-ip:hover {
    animation: animate 2s infinite;
    transform: scale(1.1);
}
.scale-effect {
    transform: scale(0.8);
    transition: transform 0.3s;
}
.skycube-logo {
    height: 48px;
    width: 300px;
}
@keyframes popup-entry {
    0% { opacity: 0; filter: blur(10px); }
    100% { opacity: 1; filter: blur(0); }
}
@keyframes popup-exit {
    0% { opacity: 1; filter: blur(0); }
    100% { opacity: 0; filter: blur(10px); }
}
.youtube-popup .img {
    height: 40px;
    width: 40px;
}
.youtube-channel {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.close-popup {
    color: white;
    background-color: black;
    padding: 5px;
    cursor: pointer;
    border-radius: 12px;
    max-width: 100px;
    margin: auto;
    margin-top: 20px;
    transform: scale(1);
    transition: transform 0.3s;
}
.close-popup:hover {
    transform: scale(1.1);
}
.development-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: yellow;
    color: black;
    padding: 1px;
    text-align: center;
    z-index: 1000;
}
