* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Itim", cursive;
    font-weight: 600;
    font-size: large;
    font-style: normal;
    line-height: 1.6;
    color: #000000;
    background-color: #f7bcee;
    cursor: url("../my art work/shiro.png") 16 16, pointer;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    background-color: rgb(149, 235, 247);
}

h1, h2, h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}

h1 {
    text-align: center;
    font-size: 3.5em;
    background-color: rgb(205, 178, 211);
    border-radius: 18px;
    border-color: #000000;
    border-width: 2px;
    border-style:groove;
}
h1 .cloud {
    position: relative;
    top: -20px;
    left: -20px;
    width: 60px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}
h2 {
    font-size: 2.5em;
}

h3 {
    font-size: 2em;
}
h4 {
    font-size: 1.5em;
}
p {
    margin-bottom: 15px;
    font-size: 1.2em; ;
}

ul {
    margin-left: 0px;
    margin-bottom: 5px;
}

li {
    margin-bottom: 5px;
    align-items: center;
    justify-content: center;
}

a {
    color: #0066cc;
    text-decoration: none;
    font-size: large;
}

a:hover {
    text-decoration: underline;
}

div {
    margin-bottom: 30px;
}
#music,
#my_projects,
#my_drawings,
#get_in_touch {
  border-top: 2px solid #050404;
  padding-top: 1rem;
}
.project_img, #robo_img
 {
    width: 50%;
    max-width: 400px;
    height: auto;
    display: block;
    border-radius: 19px;
    margin-bottom: 10px;
}

.art_img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.music{
    width: 100%;
    height: 352px;
    border-color: #000000;
}

.gif-topright {
    position: fixed;
    border-radius: 70px;
    top: 20px;
    right: 20px;
    width: 150px;
    height: auto;
    z-index: 10;
    background: transparent;
}

iframe {
    border: none;
    border-radius: 12px;
}
#my_drawings .gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 20px;
    align-items: start;
}
.art-card {
    aspect-ratio: 1/1;
    background-color: rgb(239, 241, 98);
    padding: 18px;
    border: #000000;
    border-radius: 20px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.12);
}

.art-card h4 {
    margin-bottom: 14px;
    font-size: 1.5em;
}

.art-card p {
    margin-top: 12px;
    font-size: 1.2rem;
    line-height: 1.5;
}

.art-card img {
    width: 100%;
    height: auto;
    background-color: pink;
    border-color: #000000;
    border-radius: 18px;
    display: block;
}


.art_img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}
/* Sticker styles */
.sticker {
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.sticker:hover {
    transform: scale(1.15) rotate(5deg);
}

.sticker-projects {
    float: left;
    margin-right: 20px;
    margin-bottom: 15px;
}

.sticker-gallery {
    float: right;
    margin-left: 20px;
    margin-bottom: 15px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    
    h2 {
        font-size: 1.8em;
    }
    
    h3 {
        font-size: 1.5em;
    }
    
    h4 {
        font-size: 1.2em;
    }
    
    p {
        font-size: 1em;
    }
    
    .container {
        padding: 15px;
    }
    
    #my_drawings .gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project_img, .art_img {
        max-width: 100%;
    }
    
    .sticker {
        width: 80px;
    }
    
    .gif-topright {
        width: 100px;
        top: 10px;
        right: 10px;
    }
    
    .music {
        height: 280px;
    }
}

.cursor{
    width: 20px;
    height: 20px;
    border: 1px solid #000000;
    border-radius: 50%;
    position: absolute;
    transition-duration: 200ms;
    transition-timing-function: ease-out;
    animation: cursorAnim .5s infinite alternate;   
}

.cursor::after{
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    border: 8px solid grey;
    border-radius: 50%;
    top: -8px;
    opacity: .5;
    left: -8px;
    animation: cursorAnim .5s infinite alternate;
}

@keyframes cursorAnim {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(.7);
    } 
}
@keyframes cursorAnim2 {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(.4);
    }
}
@keyframes cursorAnim3 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(3);
    }
    100%{
        transform: scale(1);
        opacity: 0;
    }
}

.expand {
    animation: cursorAnim3 .5s forwards;
    border: 1px solid #000000;
}


@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1.3em;
    }
    
    h3 {
        font-size: 1.2em;
    }
    
    p {
        font-size: 0.95em;
    }
    
    .container {
        padding: 10px;
    }
    
    #my_drawings .gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    
    .gif-topright {
        width: 80px;
        top: 8px;
        right: 8px;
    }
    
    ul {
        padding-left: 15px;
    }
    
    li {
        margin-bottom: 15px;
    }

}
