/* Copyright © HunOne */

/* FONTS */

@import "../fonts/Montserrat/Montserrat.css";

/* IMPORTS */

@import "header.css";
@import "footer.css";

/* COMMON STYLE */

html, body {
    margin: 0;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.005rem;
	color: #000000;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
    -webkit-font-smoothing: antialiased;
}

main {
    margin: 60px 0px 0px 0px;
    padding: 5px;
    width: 100%;
    background-color: white; /* For browsers that do not support gradients */
    background-image: linear-gradient(rgba(199,240,228,0), rgba(199,240,228,1));
    background: -webkit-linear-gradient(rgba(199,240,228,0), rgba(199,240,228,1));
    background-size: 100%;
}

h1 {
	font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.02rem;
    font-weight: 500;
    text-align: center;
    margin: 10px 0px;
    font-weight: 400;
}

.h1_sub {
    margin-top: -10px
}

h2 {
	font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.02rem;
    font-weight: 500;
}

h3 {
	font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.02rem;
    font-weight: 500;
}

p {
    font-weight: 300;
}

b, .bold {
    font-weight: 500;
}

a {
    font-weight: 500;
    color: #000000;
    text-decoration: none;
}

.center {
    text-align: center;
}

.red {
    color: red;
}

/* FORM STYLE */

input, select, textarea {
    border: 1px #000 solid;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 10px 10px;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border: 2px solid black;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

input[type=submit], input::file-selector-button, button .button {
    background-color: #c7f0e4;
    color: #000000;
    margin-top: 5px;
    padding: 8px 10px;
    border: 1px #000 solid;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 500;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
    display: initial;
}

@media (min-width: 1024px) {
    input[type=submit]:hover, button:hover .button:hover {
        background-color: black;
        color: white
    }
}