@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');

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

html {
    height: 100%;
    width: 100%;
}

#text {
    width: 40%;
}

h1, h3, h4, p, a {
    /* text-align: center; */
    font-family: Poppins;
    color: #222640;
}

h1 {
    font-size: 7rem;
}

h3 {
    font-size: 2rem;
    opacity: 0.9;
}

h4 {
    padding-top: 2em;
    font-size: 1.5rem;
    opacity: 0.9;
}

p {
    margin-top: 1em;
    font-size: 1.2rem;
}

#bot {
    opacity: 0.7;
    font-size: 4rem;
}

#other {
    opacity: 0.8;
}

body {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: 1;
    background: #adb8ff;
    padding: 4em;
    overflow: hidden;
}

img {
    width: 50%
}

.ball {
  width: 90%;
  height: 90%;
  position: absolute;
  border-radius: 100%;
  opacity: 0.7;
  z-index: -1;
}

@media (max-width: 1300px) {
    body {
        flex-direction: column;
        overflow-y: visible;
        padding: 1em;
    }

    #text, img {
        width: 80%;
    }

    h1 {
        margin-top: 1em;
        font-size: 7rem;
    }

    img {
        margin-top: 2em;
    }
}
