@charset "charset-name";

@font-face {
    font-family: "Reenie Beanie";
    src: url("ReenieBeanie.ttf");
}

* {
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: url("nz.jpg"), linear-gradient(180deg, rgba(43,77,141,1) 0%, rgba(63,151,163,1) 58%, rgba(72,53,22,1) 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.content {
    position: absolute;
    top: 5vh;
    bottom: 0;
    transform: translate(-50%,0);
    left: 50%;
    width: 90%;
    margin: auto;
    color: white;
    font-size: 2.5vmax;
}

.content h1 {
    font-family: 'Reenie Beanie';
    font-size: 2.2em;
    text-align: center;
    display: block;
}

.formmailer {
    position: absolute;
    bottom: 2.5vmax;
    transform: translate(-50%,0);
    left: 50%;
    width: 67vw;
    max-width: 54vw;
    border: 1px solid transparent;
    margin-bottom: 30px;
}

input[type=email], textarea {
    width: 100%;
    margin-bottom: 0.3em;
    font-family: Verdana, Arial, sans-serif;
    font-size: 0.9rem;
    padding: 0.7rem;
    border: none;
    border-radius: 0.2rem;
    opacity: 0.75;
    color: black;
}

input#mail-send {
    position: absolute;
    bottom: 7px;
    right: 7px;
    width: 3.7rem;
    height: auto;
    transform: translate(1.8rem,2.3rem) rotate(10deg);
    text-decoration: none;
    border: none;
}