body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: white;

    background-color: #FF709D;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.sticky-header {
    display: flex;
    background-color: #FF709D;
    padding: 10px 0;
    color: #fff;
    padding-left: 25px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    opacity: 0;
    animation: dropDown 0.5s ease-out forwards;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@keyframes dropDown {
    0% {
        top: -100px;
        opacity: 0;
    }

    100% {
        top: 0px;
        opacity: 1;
    }
}


body {
    padding-top: 80px;
}

#items {
    font-size: 19px;
    color: white;
    text-decoration: none;
    transition: color 0.55s ease-in-out;
}

#items:hover {
    color: red;
}

nav {
    padding-top: 15px;
    padding-left: 10px;
}

.flex {
    display: flex;
    text-decoration: none;
}

.flexing {
    display: flex;
    padding-left: 50px;
    flex-wrap: nowrap;
}

#account {
    position: fixed;
    right: 50px;
    margin-top: 15px;
    display: flex;
}

#home h1 {
    margin-left: 10px;
}

#home {
    background-image: url("/assets/testhome.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 660px;
    margin-top: 1.3vw;
}

#second {
    background-color: white;
    border-radius: 20px;
    color: black;
    width: 400px;
    height: 130px;
    position: fixed;
    bottom: 260px;
    padding: 5px 10px;
    padding-bottom: 10px;
    margin-left: 50px;
}

.divider {
    border-top: 2px solid rgba(51, 51, 51, 0.2);
    width: 97%;
    margin: 20px 0;
    margin-left: 22px;
    border-radius: 100px;
    position: fixed;
    top: 79px;
}

.divider p {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 0 10px;
    font-size: 12px;
    display: block;
}

#about {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
}

#text-about {

    background: #FFF5F9;
    color: black;
    padding: 20px 20px;
    text-align: left;
    height: 300px;
    width: 35vw;
    border-radius: 20px;
    margin-top: 5vw;
    margin-left: 3vw;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all 0.3s ease-in-out;
}
#text-about:hover {
    box-shadow: rgba(0, 0, 0, 0.35) -10px 10px 15px;
}

#text-about h1 {
    margin-bottom: 0px;
    margin-top: 2px;
    font-size: 40px;
}

#text-about h3 {
    margin-top: 2px;
    font-size: 16px;
}

#image-about img {
    width: 40vw;
    border-radius: 20px;
    margin-right: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(255, 184, 206);
    color: #FF709D;
    padding: 15px 30px;
    margin-top: 50px;
    border-top: 3px solid #FF709D;
    font-family: sans-serif;
  }
  
  .footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  footer img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
  }
  
  .footer-icons i {
    font-size: 28px;
    margin-left: 15px;
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
  }
  
  .footer-icons i:hover {
    transform: scale(1.2);
    color: #fff;
  }
  

#maincontent {
    opacity: 0;
    animation: FadeIn 0.5s ease-out forwards;
    margin-top: 18px;
}

@keyframes FadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

.update-container {
    background-color: #FFF5F9;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 16px;
    font-family: 'Arial', sans-serif;
    position: absolute;
    top: 535px;
    margin-left: 3.5%;
    transition: box-shadow 0.3s ease;
}
.update-container:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.update-label {
    font-size: 14px;
    color: #FF709D;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    font-weight: 600;
}

.update-title {
    font-size: 24px;
    font-weight: bold;
    color: #FF709D;
    margin: 8px 0 12px 0;
}

.update-link {
    display: inline-block;
    color: #FF709D;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #FF709D;
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.update-link:hover {
    opacity: 0.8;
}