.background-image {
    position: absolute;
    left: 0;
    top: -30px;
    background-image: url('/img/stardew.png');
    background-size:cover;
    background-repeat:repeat-y;
    width: 100%;
    min-height:50%;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}
.section {
    margin-bottom:60px;
    color:#fff;
    z-index:1;
    position:relative;
}
.section > h1 {
    margin:50px 0 5px 0;
    color:#ebab22;
    font-size:36px;
    text-shadow:0 0 2px #000;
    letter-spacing:1px;
}
.section > p {
    margin:0;
    font-size:20px;
    font-weight:600;
    text-shadow:0 0 25px #000;
}
.section > p > a {
    color:#ebab22;
    text-decoration:none;
    transition:.1s ease all;
}
.section > p > a:hover {
    filter:brightness(1.2);
}
.section > input {
    border:0;
    outline:0;
    margin:15px 0 0 0;
    padding:10px 0;
    font-size:20px;
    border-bottom:3px solid #fff;
    background:transparent;
    font-family:inherit;
    width:500px;
    font-weight:bold;
    transition:.2s ease all;
    color:#fff;
    max-width:calc(100% - 30px);
}
.section > input:focus {
    border-color:#ebab22;
    transition:.2s ease all;
    color:#ebab22;
}
.section > input:focus::placeholder {
    color:#ebab22;
    border-color:#ebab22;
    transition:.2s ease all;
}
::placeholder {
    color:#fff;
    opacity: 1;
}
.section2 {
    background:#153d87;
    position:relative;
}
.selector {
    width:100%;
    height:250px;
    padding-top:10px;
}
.option {
    float:left;
    width:calc(50% - 3px);
    height:calc(25% - 3px);
    border-top:3px solid #153d87;
    text-align:center;
    font-size:24px;
    color:#153d87;
    background:#f1f1f1;
    line-height:65px;
    cursor:pointer;
    transition:.1s ease all;
    text-transform:uppercase;
    font-weight:800;
}
.left-option {
    border-left:3px solid #153d87;
}
.full {
    width:calc(100% - 3px);
}
.option:hover {
    background:#ebab22;
    color:#f1f1f1;
}
.selected-option {
    background:#ebab22;
    color:#f1f1f1;
}
.crop-container {
    transition:.1s ease all;
    min-height:151px;
    padding-bottom:20px;
    color:#fff;
    font-size:24px;
    text-transform:uppercase;
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:space-between;
}
.crop-container > p {
    position:absolute;
    opacity:0;
    transition:.1s ease all;
}
.crop-card {
    margin:5px;
    flex:1 1 auto;
    max-width:calc((100% / 5) - 10px);
    min-width:calc((100% / 5) - 20px);
    height:125px;
    border-radius:5px;
    margin:10px 0 0;
    background:#f1f1f1;
    text-align:center;
    border:3px solid #ebab22;
    text-decoration:none;
    transition:.2s ease all;
}
.crop-card > img {
    margin:0 auto;
    width:64px;
}
.crop-card > p {
    margin-bottom:10px;
    font-size:16px;
    font-weight:800;
    text-align:center;
    color:#153d87;
    text-transform:uppercase;
    text-decoration:none;
}
.crop-card:hover {
    background:#ebab22;
    cursor:pointer;
    transform:scale(1.05);
    -webkit-box-shadow: 0px 0px 50px -2px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 50px -2px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 50px -2px rgba(0,0,0,0.75);
}
@media only screen and (max-width: 900px) {
    .crop-card {
        max-width:calc((100% / 4) - 10px);
        min-width:calc((100% / 4) - 20px);
    }
}
@media only screen and (max-width: 600px) {
    .section {
        text-align:center;
        width:94vw;
        margin-left:auto;
        margin-right:auto;
    }
    ::placeholder {
        text-align:center;
    }
}
@media only screen and (max-width: 700px) {
    .crop-card {
        max-width:calc((100% / 3) - 10px);
        min-width:calc((100% / 3) - 20px);
    }
}
@media only screen and (max-width: 530px) {
    .crop-card {
        max-width:calc((100% / 2) - 10px);
        min-width:calc((100% / 2) - 20px);
    }
}
@media only screen and (max-width: 350px) {
    .crop-card {
        max-width:calc(100% - 10px);
        min-width:calc(100% - 20px);
    }
}