style
html {
    scroll-behavior: smooth;
}

body {
    color: #1E1E1E;
    font-family: "Kantumruy Pro", sans-serif;
    background-color: #1E1E1E;
    background-image: url(..//project1/img/nicu_48943679226_o\ 1.jpg);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
}

h1 {
    color: darkgrey;
}

.circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: aqua;
     transform: translateX(20px);
    transition: all 0.5s ease-in-out; 

}

.move-me { 
    background-color: pink;
    box-shadow: 10px 10px 10px white;   
    transform: scale(0.8) translateX(1200px) skewX(95deg);
    transition:all 0.5s ease-in-out;
    

}
