body {
    background: url(global_assets/bg.jpg) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: white;
}

.content {
    padding-left: 150px;
    padding-right: 150px;
}

h1 {
    font-family: 'Bungee Hairline', cursive;
    font-size: 80px;
    font-weight: 300;
}

.google_form {
    height: 1250px;
    margin-bottom: 10px;
}

/* Animations */

.floatup {
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    transition-duration: 0.3s;
    transition-property: transform;
    transition-timing-function: ease-out;
}
.floatup:hover, .floatup:focus, .floatup:active {
    transform: translateY(-8px);
}

.grow {
    
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    transition-duration: 0.3s;
    transition-property: transform;
}
.grow:hover, .grow:focus, .grow:active {
    transform: scale(1.025);
}

.growbigger {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    transition-duration: 0.3s;
    transition-property: transform;
}
.growbigger:hover, .growbigger:focus, .growbigger:active {
    transform: scale(1.06);
}

