*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Merriweather", serif;
}
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(rgba(18,0,12,255),rgba(19,1,13,255));
}
/*.box div{
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: transparent;
    border: 6px solid rgba(255,255,255,0.8);
}*/
.box div:nth-child(1){
    top: 12%;
    left: 42%;
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: transparent;
    border: 6px solid rgba(255,255,255,0.8);
    animation: animate 10s linear infinite;
}
.box div:nth-child(2){
    top: 70%;
    left:50%;
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: transparent;
    border: 6px solid rgba(255,255,255,0.8);
    animation: animate 7s linear infinite;
}
.box div:nth-child(4){
    top: 20%;
    left:60%;
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: transparent;
    border: 6px solid rgba(255,255,255,0.8);    
    animation: animate 10s linear infinite;
}
.box div:nth-child(5){
    top: 67%;
    left:10%;
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: transparent;
    border: 6px solid rgba(255,255,255,0.8);
    animation: animate 6s linear infinite;
}
.box div:nth-child(6){
    top: 80%;
    left:70%;
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: transparent;
    border: 6px solid rgba(255,255,255,0.8);
    animation: animate 12s linear infinite;
}
.box div:nth-child(7){
    top: 60%;
    left:80%;
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: transparent;
    border: 6px solid rgba(255,255,255,0.8);
    animation: animate 15s linear infinite;
}
.box div:nth-child(8){
    top: 32%;
    left:25%;
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: transparent;
    border: 6px solid rgba(255,255,255,0.8);
    animation: animate 16s linear infinite;
}
.box div:nth-child(9){
    top: 90%;
    left:25%;
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: transparent;
    border: 6px solid rgba(255,255,255,0.8);
    animation: animate 9s linear infinite;
}
.box div:nth-child(10){
    top: 20%;
    left:80%;
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: transparent;
    border: 6px solid rgba(255,255,255,0.8);
    animation: animate 5s linear infinite;
}
nav{
    display: grid;
    max-width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    background: rgba(72, 0, 48, 0.8);
    padding: 15px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.8);
    position: sticky;
    top: 0;
}
nav .logo h2{
    font-size: 2.5em;
    background: linear-gradient(#dc21b8,#4ac0fc);
    -webkit-text-fill-color: transparent; 
    -webkit-background-clip: text;
}

.navlinks ul{
    display: flex;
    justify-content: space-between;
}
.navlinks ul li{
    list-style: none;
}
.navlinks ul li a{
    text-decoration: none;
    color: #fff;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    padding: 5px;
    text-transform: capitalize;
    transition: all 0.5s ease-out;
}
.navlinks ul li a:hover{
    font-size: 2em;
    background-color: #4ac0fc;
}
#title{
    font-size: 3.5em;
    text-align: center;
    margin-bottom: 25px;
    background: linear-gradient(#dc21b8,#4ac0fc);
    -webkit-text-fill-color: transparent; 
    -webkit-background-clip: text;
}
#title::after{
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg,#dc21b8,#4ac0fc) ;
    margin: 10px auto 0;
    border-radius: 2px;
}
.main{
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-evenly;
    margin-top: 30px; 
    padding: 30px;
}
.contact-info {
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,0.1);
    padding: 40px 20px;
    margin: 20px;
    border-radius: 10px;
}
.socials{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-info .info {
    flex: 1;
}

.contact-info .info h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
#contact_links{
    font-size: 3.5em;
    text-align: center;
    margin-bottom: 25px;
    background: linear-gradient(#dc21b8,#4ac0fc);
    -webkit-text-fill-color: transparent; 
    -webkit-background-clip: text;
}
#contact_links::after{
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg,#dc21b8,#4ac0fc) ;
    margin: 10px auto 0;
    border-radius: 2px;
}

.contact-info .message-form {
    flex: 1;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.contact-info .message-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info .message-form form input,
.contact-info .message-form form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.contact-info .message-form form input:focus,
.contact-info .message-form form textarea:focus {
    outline: none;
    border-color: #dc21b8;
    box-shadow: 0 0 5px rgba(220, 33, 184, 0.5);
}
.contact-info .message-form form textarea:focus {
    outline: none;
    border-color: #dc21b8;
    box-shadow: 0 0 5px rgba(220, 33, 184, 0.5);
}
.contact-info .message-form form button {
    width: 100%;
    padding: 10px;
    border: none;
    background: linear-gradient(90deg,#dc21b8,#4ac0fc);
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.contact-info .message-form form button:hover {
    background: black;
}

.socials .info ul{
    display: flex;
}
.socials ul li {
    list-style: none;
    padding: 5px;
    display: flex;
    margin: 10px;
    border-radius: 10px;
}
.socials ul li a{
    text-decoration: none;
    font-size: 2em;
    padding: 8px;
    border-radius: 10px;
    transition: all 1s ease-in;
}
.socials ul li a:hover{
    background: #dc21b8;
}
footer{
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 10px;
    text-align: center;
}
@keyframes animate{
    0%{
      transform: scale(0) translateY(0) rotate(0);  
      opacity: 1;
    }
    100%{
      transform: scale(1.3) translateY(-90px) rotate(360deg);
      opacity: 0;  
    }
}
@keyframes movepic {
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(100px); 
    }
    100% { 
        transform: translateY(0); 
    }
    
}
@keyframes wavehand {
    0% { transform: rotate(0deg); opacity: 1; }
    25% { transform: rotate(-20deg); opacity: 0.9; }
    50% { transform: rotate(20deg); opacity: 1; }
    75% { transform: rotate(-20deg); opacity: 0.9; }
    100% { transform: rotate(0deg); opacity: 1; }
}
@media screen and (max-width: 600px){
    .nav{
        max-width: 100%;
        padding: 10px;
    }
    .navlinks ul li{
        display: flex;
        flex-wrap: wrap;
    }
    .socials{
        display: grid;
        grid-template-columns: auto;
        background: rgba(255,255,255,0.1);
        gap: 10px;
        padding: 20px;
        width: 100%;
    }
    .contact-info .message-form {
        flex: 1;
        padding: 10px;
    }
    
    .contact-info .message-form h2 {
        font-size: 10px;
        margin-bottom: 10px;
    }
    
    .contact-info .message-form form input,
    .contact-info .message-form form textarea {
        width: 50%;
        padding: 8px;
        margin-bottom: 10px;
    }
    
    .contact-info .message-form form button {
        width: 100%;
        padding: 5px;
        font-size: 10px;
        border-radius: 5px;
        cursor: pointer;
    }
    .socials .info ul{
        display: flex;
    }
    .socials ul li {
        padding: 5px;
        display: flex;
        flex-wrap: wrap;
        margin: 10px;
        border-radius: 10px;
    }
    .footer {
        position: absolute;
        bottom: 0;
        width: 100%;
        background: rgba(255,255,255,0.1);
        color: #fff;
        text-align: center;
        padding: 10px;
    }
}

@media screen and (max-width: 1024px) {
    .navlinks ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
    .socials {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    #title, #contact_links {
        font-size: 2.5em;
    }
    .contact-info {
        padding: 10px;
    }
    .contact-info .message-form {
        padding: 12px;
    }
    .contact-info .message-form h2 {
        text-align: left;
        font-size: 14px;
    }
    .contact-info .message-form form input,
    .contact-info .message-form form textarea {
        width: 75%;
        padding: 8px;
        margin-bottom: 10px;
    }    
    .contact-info .message-form form button {
        font-size: 12px;
        width: 75%;
    }
    .socials ul li a {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 480px) {
    .nav{
        max-width: 100%;
        padding: 8px;
    }
    .navlinks ul{
        display: flex;
        justify-content: space-between;
    }
    .navlinks ul li{
        display: flex;
        flex-wrap: wrap;
    }
    .navlinks ul li a{
        font-variation-settings: "wdth" 50;
        padding: 3px;
    }
    #title, #contact_links {
        font-size: 2em;
    }
    #title::after, #contact_links::after {
        width: 50px;
    }
    .contact-info {
        padding: 0;
    }
    .contact-info .message-form {
        max-width: 75%;
        padding: 8px;
    }
    .contact-info .message-form h2 {
        text-align: left;
        font-size: 10px;
    }
    .contact-info .message-form form input,
    .contact-info .message-form form textarea {
        width: 100%;
        padding: 8px;
        margin-bottom: 10px;
    }    
    .contact-info .message-form form button {
        font-size: 12px;
        width: 100%;
    }
    .socials .info{
        max-width: 50%;
        display: flex;
        flex-direction: column;
    }
    .socials .info ul{
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .socials ul li {
        list-style: none;
        padding: 4px;
        display: flex;
        margin: 4px;
        border-radius: 10px;
    }
    .socials ul li a{
        text-decoration: none;
        font-size: 1.5em;
        margin: 2px;
        padding: 3px;
        border-radius: 10px;
        transition: all 1s ease-in;
    }
    .socials ul li a:hover{
        background: #dc21b8;
    }
    footer {
        font-size: 0.8em;
    }
}