@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;700&display=swap');

body {
    background: #022c25;
    font-family: 'Hind Siliguri', sans-serif;
    color: #e6fefa;
    margin: 0;
    padding: 0;
}

.wrap {
    height: 100vh;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(230,254,250,.1);
    padding: 3rem;
    border-radius: 20px;
    margin: 0 1.5rem;
}

h1 {
    font-size: 45px;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    background: linear-gradient(90deg,#00c797,#8db285);
    -webkit-background-clip: text;
    background-clip: text;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
}

p{
    font-size: 1.25rem;
    line-height: 2.25rem;
    margin: 0;
    text-align: center;
    width: 75%;
    margin-bottom: 1rem;
}

a {
    color: #00c797;
}

img {
    width: 150px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1.1rem;
        width: 90%;
    }

    img {
        width: 120px;
        margin-bottom: 1rem;
    }
}