* {
    text-align: center;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background: #e2e2e2;
    color: #1f2937
}

header {
    background: #2f855a;
    padding: 40px 20px;
}

section {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px
}

.grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px
}

.hero {
    font-size: 1.2rem;
    max-width: 800px;
    margin: auto
}

footer {
    background: #1a202c;
    color: #fff;
    padding: 20px;
    margin-top: 40px
}

nav {
    padding: 10px;
    background-color: #3eb178;
}

a {
    color: rgb(102, 102, 102);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
form {
    font-size: x-large;
    background-color: white;
    box-shadow: 0 0 30px;
    padding: 30px;
    width: fit-content;
    border-radius: 20px;
    position: relative;
    transform: translate(-50%);
    left: 50%;
    margin-top: 50px;
}

input {
    margin: 10px;
}

#room {
    height: 50px;
}
button {
    font-size: large;
}

p {
    padding: 30px;
}

#card {
    border-radius: 50px;
    transform: translate(-50%);
    position: relative;
    left: 50%;
    box-shadow: 0 0 30px;
    padding: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
}


@media (min-width: 600px ) {
    #card {
        width: 70vw;
    }

    input {
        width: 500px;
    }

    textarea {
        width: 500px;
    }
}

@media (max-width: 600px) {
    button {
        font-size: xx-large;
    }
}

