body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    background-color: #f4f4f4;
}

.container {
    text-align: center;
    /* background: white; */
    /* border: 2px solid #ccc; */
    /* border-radius: 10px; */
    padding: 20px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 300px;
    height: auto;
    border-radius: 15px;
}

.content {
    margin: 20px 0;
}

h1 {
    color: #e60000;
    font-size: 2.5em;
    margin: 10px 0;
}

h2 {
    color: #002060;
    font-size: 1.5em;
    margin: 10px 0;
}

.footer {
    display: block;
    /* flex-direction: column; */
    /* align-items: center; */
    z-index: 100;

    top: calc(100vh - 250px);
    position: absolute;
    /* width: 80%; */
    /* left: calc(50vw - 75%); */
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.social-icons a {
    margin: 0 5px;
}

.social-icons img {
    width: 30px;
    height: auto;
}

.footer p {
    color: black;
    font-size: 1em;
    margin: 0;

    padding: 1em;
    background: #fff8;
    border-radius: 5px;
}


/* background  */
.wrapper {
    position: relative;
    height: 100vh;
}

.content {
    z-index: 100;
}

.background {
    /* position: absolute; */
    top: 0;
    left: 0;
    z-index: -100;
}

.background > * {
    z-index: -100;
}

/* balls as clouds */
.circle {
    width: 200px;
    height: 200px;
    position: absolute;
    margin: 50px auto;
    animation: rotate 60s linear infinite
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.ball {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ball:nth-child(1) {
    transform: translate(-50%, -50%) rotate(0deg) translateX(150px);
}

.ball:nth-child(2) {
    transform: translate(-50%, -50%) rotate(72deg) translateX(150px);
}

.ball:nth-child(3) {
    transform: translate(-50%, -50%) rotate(144deg) translateX(150px);
}

.ball:nth-child(4) {
    transform: translate(-50%, -50%) rotate(216deg) translateX(150px);
}

.ball:nth-child(5) {
    transform: translate(-50%, -50%) rotate(288deg) translateX(150px);
}

.vibrant-canvas {
    display: none;
}
