@import url('https://fonts.googleapis.com/css2?family=Kurale&family=Quicksand:wght@300..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #175E14;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
}

.container {
    text-align: center;
}

.logo {
    width: 200px;
    margin-bottom: 20px;
}

h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2em;
    margin-bottom: 10px;
}

p {
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 20px;
}

.btn {
    font-family: 'Quicksand', sans-serif;
    display: inline-block;
    padding: 10px 20px;
    background-color: #259721;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1em;
}

.btn:hover {
    background-color: #167812;
}

@media (max-width: 600px) {
    h1 {
        font-size: medium;
    }

    p {
        font-size: medium;
    }


}