﻿* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    font-size: 64%;
}

body {
    font-family: "Poppins", sans-serif;
    color: #555;
    font-size: 1.2rem;
    line-height: 1.6;background-color: #f3f3f3;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}



.container-center {
    
    margin: 0 auto;
    max-width: 70rem;
}

.logo {
    width: 100px;
    height: auto;
    margin-bottom: 5rem; 
}


.image-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

h1 {
    font-size: 3.5rem;
    text-align: center;
    font-weight: 700;

}

.survey-form {
    margin-top: 5rem;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    background-color: #ffffff;
    padding: 9.8rem 6rem;
    font-size: 1.5rem;
    border-radius: 9px;
}

.form-items {
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr 1fr;
    padding: 
}


.btn,
.btn:link,
.btn:visited {
    display: inline-block;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 1rem 3.2rem;
    /* Only necessary for .btn */
    border: none;
    cursor: pointer;
    font-family: inherit;
    /* Put transition on original "state" */
    /* transition: background-color 0.3s; */
    transition: all 0.3s;
    border-radius: 9px;
}




.btn--full {
    background-color: #f28c1e;
    color: #ffffff;
}

.btn--full:hover,
.btn--full:active {
    background-color: #f6af62;
    color: #ffffff;
}

@media (max-width: 56em) {
    
    html {
        font-size: 54%;
    }

    .form-items {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .form-items label {
        margin-bottom: 1rem; 
    }

    .logo {
        width: 100px;
    }

    h1 {
        font-size: 2.4rem;
        padding: 2rem;
    }

    .survey-form {
        margin: 2rem;
    }


}


.main_div {
    display: flex;
    justify-content: center;
    margin-top: 30vh;
    font-size: 1.8rem;
}

#book-form {
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 20px;
}

.svg {
    fill: #f28c1e;
    max-width: 400px;
    height:auto;
    margin-bottom: 6rem;
}