body {
    background-color: rgb(95, 4, 185);
    margin: 0 50px 0 50px;
}

.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 150px;
    padding-top: 25px;
}

.navbar {
    padding: 10px;
}

.nav-list {
    display: flex;
    list-style: none;
    justify-content: space-around;
}

.nav-list li a {

    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    list-style-type: none;
    text-shadow: black 2px 4px 10px;
    text-decoration: none;
    color: #CB08A0;
}  

.nav-list li a:hover {
    color: #fc66dc;
}

h1 {
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 50px;
    text-shadow: white 0px 0px 10px;
}

p {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}

figcaption {
    color:#CB08A0;
    text-shadow: black 2px 4px 10px;
    font-size: 31px;
    margin-top: 10px;
}

figure {
    text-align: center;
    margin-top: 50px;
}

.aworks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gif-group {
    text-align: center;
    margin-top: 40px;
}

.video-player {
    width: 100%;
    max-width: 400px;
    height: auto; 
}

.gif-group img {
    width: 224px; /* your GIF resolution */
    height: auto;
    border-radius: 6px;
    image-rendering: pixelated; /* crisp pixels */
}

.gif-animation {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.gif-display {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.png-group img {
    width: 144px;
    height: auto;
    border-radius: 6px;
    image-rendering: pixelated; /* crisp pixels */
}

.dworks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

video {
    margin-bottom: -15px;
}

.bio {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    align-items: center;
    justify-items: center;
    padding-left: 0;
    gap: 20px;
    
}

.bio-text {
    font-size: 28px;
}

a {
    color: white;
}

a:hover {
    color: #CB08A0;
}

#description {
    color: white;
    text-shadow: none;
    font-size: 20px;
    margin-top: 10px;
}

.thumbnail:hover img {
    filter: brightness(1.2);
  }

.center-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    
}

.mobile-image{
    display: none;
}

.imagea {
    height: 300px;
}

.email-link {
    font-size: 20px;
}

.email-link:hover {
    color:rgb(95, 4, 185);
  }

.container {
    display: flex;
    border-radius: 8px;
}

.hello {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #fff;
    font-size: 24px;
}

.hello img {
    width: 400px;    
    border-radius: 5px;
}

.contactform {
    flex: 1;
    padding: 40px;
    background-color: #cb08a1;
    width: 100%;
}

.contactform h2 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 50px;
    text-shadow: white 0px 0px 10px;
}

.group {
    display: inline-block;
    margin-right: 25px;
}

.group,
.group1 {
    margin-bottom: 10px;
}

.group label,
.group1 label {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
}

.group input {
    width: 300px;
    padding: 10px;
    font-size: 14px;
    border: 3px solid #fff;
    border-radius: 4px;
    outline: none;
    resize: none;
}

.group1 input,
.group1 textarea {
    width: 650px;
    padding: 10px;
    font-size: 14px;
    border: 3px solid #fff;
    border-radius: 4px;
    outline: none;
    resize: none;
}

.group input:focus,
.group textarea:focus,
.group1 input:focus,
.group1 textarea:focus {
    border-color: blue;
}

.submitbutton {
    display: inline-block;
    background-color: rgb(95, 4, 185);
    color: #fff;
    font-size: 14px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
}


@media screen and (max-width: 768px) {
   body {
    margin: 0 30px 0 30px;
   }
    .nav-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-content: space-around;
        gap: 10px;
    }

    .dworks {
        grid-template-columns: repeat(2, minmax(175px, 1fr));
    }

    .imagea {
        height: 200px;
    }

    figcaption {
        font-size: 25px;
    }

    .aworks {
        grid-template-columns: repeat(1, 1fr);
        gap: 0px;
    }
    
    .bio-text {
        font-size: 20px;
    }

    .selfie {
        width: 325px;
        height: auto;
    }

    .hello img {
        display: none;
    }

    .contactform {
        margin-left: -30px;
        padding: 10px;
        width: 100%;
    }

    .group input {
        width: 285px;
    }

}

@media screen and (max-width: 480px) {
    body {
        margin: 0 20px 0 20px;
    }
    
    .nav-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: space-around;
    }

    p {
       text-align: center;
    }

    .center-image {
        display: none;
    }

    .mobile-image {
        display: block;
        width: 75%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .dworks {
        grid-template-columns: repeat(1, minmax(175px, 1fr));
    }
    .bio {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .bio-text {
        font-size: 20px;
    }

    .selfie {
        width: 325px;
        height: auto;
    }

    .group input {
        width: 330px;
    }
    
    .group1 input,
    .group1 textarea {
        width: 350px;
    }
}
