html, body {
    margin: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif!important;
}

body { 
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: #cee3f6;
}

img {
    padding-bottom: 1rem;
}

.form {
    background: rgba(255, 255, 255, 0.4);
    padding: 2rem;
    border-radius: 2rem;
    text-align: center;
}

input[type="checkbox"] {
    cursor: pointer;
    margin-left: .4rem;
}

label {
    margin-left: .4rem;
}

input[type="checkbox"]:checked {
    background-color: #6dcaca;
}

button {
    width: 8rem;
    height: 3rem;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #6dcaca;
    color: white;
    font-size: 1.1rem;
}

button:hover {
    background-color: #57b5b5;
}

div {
    margin-bottom: 1rem
}

.footer {
    position: fixed;
    bottom: 0;
    color: gray;
}

.footer h3 {
    font-weight: 400;
    font-size: 1rem;
}

.footer a,
.footer a:link,
.footer a:visited,
.footer a:hover {
    color: #6dcaca;
    text-decoration: none;
}

.result {
    background-color: pink;
    width: 100%;
    padding: 20% 0;
    border-radius: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}

@media screen and (max-width: 600px) {
    img {
        width: 60%;
    }

    .result {
        padding: 15% 0;
    }
  }