@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
	margin: 0;
	padding: 0;
}

*,
*::before,
*::after {
	box-sizing: inherhit;
}

html {	
	box-sizing: border-box;
	font-size: 62.5% /* 1rem = 10px, 10px / 16px (= browser default) = 62.5% */ 
}

/* Optional: This varies based on project design */
body {
	font-family: 'Poppins', 'sans-serif';
	font-weight: 400;
	line-height: 1.6;
}

.container {
    background-image: url('https://haircation.com/wp-content/uploads/2021/11/The-ShadowMe-World-Tour-Presents-1080-x-1920-px-1920-x-1080-px.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.header {
    text-align: center;
    font-size: 13vw;
    padding-top: 3rem;
    font-weight: 600;
    text-transform: uppercase;
}

.header-description {
    font-size: 1.6rem;
    text-align: center;
}

.sub-container {
    width: 50%;
    margin: 3rem auto;
}

.title {
    text-align: center;
    margin-bottom: 4rem;
}

.drip-input {
    width: 95%;
    padding: 1rem .5rem;
    border: 1px solid #b3b3b3;
    border-radius: .5rem;
    -webkit-appearance: none;
}

.full {
    width: 98%;
}

label {
    font-size: 1.6rem;
    color: black;
}

.submit-btn {
    background: #534541;
    border: .1rem solid #534541;
    border-radius: 2px;
    cursor: default;
    color: #c39f90; 
    padding: 1rem 2rem;
    margin-top: 2rem;
    width: 100%;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    -webkit-appearance: none;
    
}

@media only screen and (max-width: 800px) {
    .sub-container {
        width: 95%;
    }
}