h1 {
    color: rgb(0, 100, 255);
    font-family: "Coiny";
    font-size: 300%;
}

.coiny-regular {
  font-family: "Coiny", system-ui;
  font-weight: 400;
  font-style: normal;
}

body {
    background-color: #f0f8ff;
    text-align: center;
    font-family: Arial, sans-serif;
    background-image: url("");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

#box {
    border: 10px solid;
    height: 300px;
    width: 300px;
    background-color: aqua;
    border-radius: 100%;
    border-style: inset;
    position: relative;
    top: 10vw;
    left: 10vh;
    text-align: center;
    flex: auto center;
}





img {
    width: 33vh;
    margin: 15px;
    transition: transform 0.4s;
}




#box:hover {
    background-color: #17ad1f;
}


img:hover {
    transform: scale(1.1);
}

button:hover {
    transform: scale(1.05);
}
