body {
    margin: 0%;
    padding: 0%;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
}

span {
    color: white;
}

.container {
    height: 200px;
    width: 370px;
    position: absolute;
    top: 65%;
    left: 70%;
    transform: translate(-50%, -50%);
    padding: 15px;
    background-color: rgb(216, 115, 33);
}

input {
    outline: none;
    border: none;
    padding: 5px;
    width: 370px;
    height: 35px;
}

#btn {
    color: rgb(216, 115, 33);
    padding: 10px;
    border: 2px solid white;
    background: white;
    display: block;
    margin-top: 7%;
    cursor: pointer;
    width: 370px;
}

button {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: rgb(216, 115, 33);
    border: none;
    padding: 15px;
    width: 370px;
}

.button {
    color: rgb(216, 115, 33);
    padding: 10px;
    border: 2px solid white;
    background: white;
    display: block;
    margin-top: 7%;
    cursor: pointer;
    width: 370px;
}

.container2 {
    height: 230px;
    width: 370px;
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px;
    background-color: white;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.container2 a {
    color: black;
    border-bottom: 2px black;
    border: 10px;
}

.circle {
    background-image: url(VaikunthaWEBPAGE/getquote.jpg);
    height: 550px;
    width: 550px;
    border-radius: 50%;
    background-size: cover;
    border: 20px solid rgb(216, 115, 33);
    position: relative;
    top: 50px;
    left: 100px;
}

.circle1 {
    height: 100px;
    width: 100px;
    border: 30px solid rgb(216, 115, 33);
    border-radius: 50%;
    position: relative;
    left: 120px;
    bottom: 70px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.circle1-child {
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

.circle2 {
    background-color: rgb(216, 115, 33);
    height: 100px;
    width: 100px;
    border-radius: 50%;
    position: relative;
    top: -80px;
    left: 400px;
}

.all-circle {
    animation-name: slideInUp;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@keyframes roll {
    0% {
        transform: scale(0);
    }

    25% {
        transform: translate(50px, auto);
    }

    50% {
        transform: rotate3d(0.5turn);
    }
}