@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    color: rgb(45, 68, 97);
}

.container {
    background: linear-gradient(318deg, rgb(136 132 171) 0%, rgb(184 182 203) 80%);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
}

.wrapper {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.heading {
    padding: 20px 0;
}

