* {
  box-sizing: border-box;
}
body {
    background-image: url('grass.jpg');
    display: flex;
    height: 100vh;
}
body, html {
    height: 100vh;
}
.rye-regular {
    font-family: "Rye", serif;
    font-weight: 400;
    font-style: normal;
}
.neon-text {
    color: #fff;
    text-shadow:
        0 0 5px #0ff,
        0 0 10px #0ff,
        0 0 20px #0ff,
        0 0 40px #0ff,
        0 0 80px #0ff;
    text-align: center;
}
#sign {
    flex: 20%;
    align-self: flex-end;
    position: relative;
    align-items: center;
    text-align: center; 
}
#signtext {
    position: absolute;
    width: 70%;
    top: 19%;
    font-size: 0.8vw;
    margin-left: 15%;
}
#stables {
    flex: 80%;
    align-self: center;
    height: 80%;
    align-items: center;
    position: relative;
}
#container {
    background-color: white;
    width: 80%;
    height: 80%;
    margin: auto;
    border-radius: 5px;
    border-width: 5px;
    border-color: brown;
    border-style: double;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
}
#return {
    position:absolute;
    left:0px;
    top:0px;
    height:30px;
    cursor: pointer;
}