 @import url('https://fonts.googleapis.com/css2?family=Braah+One&family=Play&display=swap');
 body {
/*    text-align: center; */
    font-family: Arial, sans-serif;
    margin:0;
    padding:0;
    background-color: hsl(0, 0%, 0%);
    text-align: center;
    cursor: default;
    accent-color: pink; /* chỉnh màu các nút */
 }
.snowflake {
  position: absolute;
  color: #fff;
  font-size: 20px;
  animation: snowfall linear infinite;
}

@keyframes snowfall {
  0% { top: -10%; }
  100% { top: 100%; }
}

    .display-img{
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: black;
    border-radius: 50%;
    margin: 30px auto 10px;
    height: 150px;
    width: 150px; 
    box-shadow: 0 1px 11px rgb(255, 255, 255);
    animation: zoomIn 1s ease forwards, floatImg 4s ease-in-out infinite;
    animation-delay: 2s 3s;
}
@keyframes zoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes floatImg {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}
.f-text{
	font-family: Braah One;
    color: #fff;
    padding: 0;
    font-size: 30px;
    line-height: 1.8;
    margin-bottom: 0;
    margin-top: -3px;
    text-shadow: 3px 0 8px #fff
}
.s-text{
	font-family: Braah One;
    color: #fff;
    padding: 0;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0;
    margin-top: -3px;
    text-shadow: 3px 0 8px #fff
}
header {
    background-color: #000000;
    display: flex; /* xếp logo và tab nằm cùng hàng */
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    height: 100px;
}

p{
    color:#f0f0f0;
}
.pic img{
    max-height: 100px;
    width:auto;
    display: inline-block;
}
.image-container {
    display: flex; /* Kích hoạt flexbox */
    justify-content: space-between; /* Hoặc space-around */
    align-items: center; /* Tùy chọn: căn giữa theo chiều dọc */
    box-shadow: 0 20px 20px px red;
}
.image-container img {
  width: 350px; /* Điều chỉnh kích thước ảnh */
  height: 250px; /* Đảm bảo tỷ lệ khung hình */
  border:2px dotted  #ff0000;
  border-radius: 15px;
  box-shadow: 0 10px 10px 2px red;;
  margin: 15px auto 0;
  justify-content: space-between;
  max-height: 100px;
  width:auto;
  display: inline-block;
}
.logo img {
    max-height: 100px;
    width:auto;
    display: inline-block;
}
section {
    color: #f0f0f0;
    border: 1px solid #c0c0c0;
    border-radius: 20px;
    box-shadow:0 0 20px #f3ebeb,
    0 0 20px #f3ebeb; 
    display: inline-block; /* căn giữa khoảng */
    display:inline-flex;
}
nav ul{
    list-style: none;
    display: flex;
}
nav ul li{
    margin: 0 15px;
}
.profile {
    max-width: 400px;
    margin:20px auto;
    background-color: aliceblue;
    padding: 20px;
    border-radius: 10px;
 }
 nav ul li a{
    color:#f0f0f0;
    text-decoration: none; /* bỏ gạch dưới chữ */
    display:block;
    padding:8px;
    font-size: 18px;
 }
 nav ul li a:hover{
    background-color: #6ee4b2;
    border-radius: 5px;
 }
 footer{
    color:#f0f0f0;
    padding:20px;
    text-align: center;
    bottom:0;
    text-decoration: none;
 } 
/* img{
    width:150px;
    height:150px;
    padding:20px;
    border-radius: 50%;
 }*/
 .link a:hover {
    background-color: rgba(0, 0, 0, 0.35);
    box-shadow: 0px 0px 10px;
}
.link a {
    display: inline-block;
    width: 150px;
    height: 45px;
    border-radius: 20px;
    margin: 10 10px 0 0;
    /* padding: 0 15px; */
    color: #fff;
    line-height: 45px;
    transition: all 0.8s;
    /* background-color: deeppink; */
    border: 0 solid #f3ebeb;
    box-shadow: 0 0 20px #f3ebeb,
    0 0 20px #f3ebeb;
}
.skill{
    text-align: center;
    display: inline-block;
    text-decoration: none;
    font-weight:bolder;
    font-size: larger;
}
.bank{
    color:#f0f0f0;
    border-radius: 20px;
    border:0 solid #e6b9b9;
    box-shadow: 0 0 20px #f3ebeb,
    0 0 20px #f3ebeb;
    margin: 10 10px 0 0;
    color: #fff;
    line-height: 40px;
    display: inline-block; /* căn giữa khoảng */
    display:inline-flex;
}
.pay{
    height:80px;
    padding:20px;
    border-radius: 50%;
    max-height: 80px;
    width:auto;
    display:flex;
}
#copyBtn {
      padding: 8px 16px;
      background-color: #007bff;
      color: white;
      border: none;
      cursor: pointer;
    }

    #copyBtn:hover {
      background-color: #0056b3;
    }

    #copyText {
        text-align: center;
      margin-bottom: 10px;
      padding: 8px;
      width: 300px;
    }
.button {
    background-color: #6ee4b2;
    color: #f0f0f0;
    padding:20px;
    border:0 solid #e6b9b9;
    border-radius: 20px;
    transition:background-color 0.3s ease;
}
.button:hover {
    background-color: #e6b9b9;
}
li{
    margin-bottom: 20px;
}
.skills{
    display: inline-block;
    width: 150px;
    height: 45px;
    border-radius: 20px;
    margin: 10 10px 0 0;
    /* padding: 0 15px; */
    color: #fff;
    line-height: 45px;
    transition: all 0.8s;
    /* background-color: deeppink; */
    border: 0 solid #f3ebeb;
    box-shadow: 0 0 20px #f3ebeb,
    0 0 20px #f3ebeb;
}
.dodgerblue{
    background: rgb(30,144,255);
}
.green{
    background-color: rgb(0, 211, 248);
}
.lightpink{
    background: rgb(205,92,92)
}
.v-text{
    color: #fff;
    font-family: 'Play', sans-serif;
}
.n-text{
    font-family: 'Play', sans-serif;
    color: #fff;
    text-decoration: none;
    font-weight:bolder;
    font-size: larger;
}
@-webkit-keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@-webkit-keyframes snowflakes-shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}50%{-webkit-transform:translateX(80px);transform:translateX(80px)}}@keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@keyframes snowflakes-shake{0%,100%{transform:translateX(0)}50%{transform:translateX(80px)}}.snowflake{position:fixed;top:-10%;z-index:9999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;-webkit-animation-name:snowflakes-fall,snowflakes-shake;-webkit-animation-duration:10s,3s;-webkit-animation-timing-function:linear,ease-in-out;-webkit-animation-iteration-count:infinite,infinite;-webkit-animation-play-state:running,running;animation-name:snowflakes-fall,snowflakes-shake;animation-duration:10s,3s;animation-timing-function:linear,ease-in-out;animation-iteration-count:infinite,infinite;animation-play-state:running,running}.snowflake:nth-of-type(0){left:1%;-webkit-animation-delay:0s,0s;animation-delay:0s,0s}.snowflake:nth-of-type(1){left:10%;-webkit-animation-delay:1s,1s;animation-delay:1s,1s}.snowflake:nth-of-type(2){left:20%;-webkit-animation-delay:6s,.5s;animation-delay:6s,.5s}.snowflake:nth-of-type(3){left:30%;-webkit-animation-delay:4s,2s;animation-delay:4s,2s}.snowflake:nth-of-type(4){left:40%;-webkit-animation-delay:2s,2s;animation-delay:2s,2s}.snowflake:nth-of-type(5){left:50%;-webkit-animation-delay:8s,3s;animation-delay:8s,3s}.snowflake:nth-of-type(6){left:60%;-webkit-animation-delay:6s,2s;animation-delay:6s,2s}.snowflake:nth-of-type(7){left:70%;-webkit-animation-delay:2.5s,1s;animation-delay:2.5s,1s}.snowflake:nth-of-type(8){left:80%;-webkit-animation-delay:1s,0s;animation-delay:1s,0s}.snowflake:nth-of-type(9){left:90%;-webkit-animation-delay:3s,1.5s;animation-delay:3s,1.5s}.snowflake:nth-of-type(10){left:25%;-webkit-animation-delay:2s,0s;animation-delay:2s,0s}.snowflake:nth-of-type(11){left:65%;-webkit-animation-delay:4s,2.5s;animation-delay:4s,2.5s}