*, :focus, :active {
    box-sizing: border-box;
}
/* Typography*/

body {
    margin: 0;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

h1 {
    font-size: 2.5rem;
    font-weight: 400;
    text-shadow: 2px 0 rgb(151, 129, 111);
}
h2 {
    font-size: 2em;
}
p {
    line-height: 1.25em;
    letter-spacing: 1px;
}


/*Intro*/
.intro {
    background-image: url("images/background-sn.jpg");
    background-size: cover;
    background-color: beige ;
    color: rgb(255, 255, 255);
    min-height: 250px;
    justify-content: space-between;
    text-align: center;
}
.top-text {
    margin: 0 auto;
    order: -1;
    border-top: 5px solid #fff;
}
.beta-text,
.top-text,
.subheading {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.intro,
.main-content {
    display: flex;
    flex-direction: column;
    padding-left: 3em;
    padding-right: 3em;
}

/* Main content */
.main-content {
    background-color: #4e4852;
    color:rgb(255, 255, 255);
    padding-top: 2em;
}
.img-main {
    width: 150px;
    border-radius: 50%;
    margin: 0 auto 1em;
}



h2,
.subheading {
    margin: 0 auto;
}




.subheading {
    font-size: 0.85rem;
}




.main-content p {
    margin-top: 2em;
    margin-bottom: 2.5em;
    font-size: 0.9rem;
}




/* Form */
input {
    width: 100%;
    margin-bottom: 1em;
    font-family: inherit;
    padding: 0.5em;
    border-radius: 8px;
    border: none;
    background-color: #aa9db0;
    color: #df955c;
}


.file-input{
    border: 1px solid #7c7382;
    color: #7c7382;
    border-radius: 8px;
}
input::file-selector-button {
    font-family: inherit;
    color: inherit;
    border: thin solid #aa9db0;
    border-radius: 5px;
  }



.fine-print {
    margin: 0 auto;
    font-size: 0.8rem;
    color: #7c7382;
}



.btn {
    width: 100%;
    background-color: #e28743;
    color:#fff;
    padding: 0.6em;
    border-radius: 8px;
    border: none;
    margin-bottom: 0.5em;
    font-weight: 900;
}




.btn-primary {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #df955c;
    cursor: pointer;
    color: #7c7382;
}

input:focus,
input:active {
    outline: none;
}




/* Media Queries */

@media (min-width: 576px) {

body {
    display: flex;
}

.intro,
main {
    width: 50%;;
    min-height: 100vh;
}
h1 {
    font-size: 5vw;
}
.fine-print {
    margin-top: auto;
    margin-bottom: 0.5em;
}


}