@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Hanken Grotesk";
    font-size: 18px;
    background-color: hsl(221, 100%, 96%);

    display: flex;
    justify-content: center;
    align-items: center;

    height: 100vh;

    margin: 0;
    padding: 0;
}

.container {
    width: 325px;
    height: 400px;
    border-radius: 25px;
    position: absolute;
    margin-right: 350px;
    box-shadow: 0px 2px 5px rgba(120, 87, 255, 0.2);

    background: linear-gradient(to bottom, hsl(252, 100%, 67%), hsl(241, 81%, 54%));
}

.circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(to bottom, hsla(256, 72%, 46%, 1), hsla(241, 72%, 46%, 0));
    border-radius: 50%;
    margin-left: 90px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

main {
    width: 325px;
    height: 400px;
    border-radius: 25px;
    background-color: white;
    margin-left: 270px;
    box-shadow: 2px 2px 5px rgba(120, 87, 255, 0.2);
    padding-left: 50px;
}

button {
    padding: 7px;
    background-color: hsl(224, 30%, 27%);
    color: white;
    border-radius: 50px;
    border: none;
    padding: 20px 100px 20px 100px;
    margin-top: 10px;
    font-family: "Hanken Grotesk";
}

ul li {
    list-style: none;
    padding: 10px;
    border-radius: 8px;
}

li {
    display: flex;
    justify-content: space-around;
}

ul {
    padding-right: 30px;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

ul li span {
    font-weight: 700;
    color: hsl(224, 30%, 27%);
}

h3 {
    text-align: center;
}

h1 {
    text-align: center;
    margin: 0;
    font-size: 50px;
    color: white;
}

p {
    text-align: center;
    color: hsl(241, 100%, 89%);
}
