    /*MY CODE*/
    
    * {
        box-sizing: border-box;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        font-weight: bold;
        text-shadow: .25px .25px rgba(15, 54, 224, 0.9);
    }
    
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        background-image: url('images/misty-mountain-ranges-at-sunrise.jpg');
        background-color: #020203;
        background-repeat: no-repeat;
        background-size: cover;
        color: rgb(255, 174, 0);
    }
    
    main {
        width: 350px;
        font-size: 14px;
        background-color: rgba(3, 58, 83, 0.5);
        margin: 25px;
        padding: 30px;
        letter-spacing: .5px;
        line-height: 26px;
        display: flex;
        flex-direction: column;
        border-radius: 8px;
    }
    
    title {
        display: none;
    }
    
    h1 {
        font-size: 28px;
        text-align: center;
    }
    
    h3 {
        margin: 0;
        font-size: 14px;
        text-align: center;
    }
    
    #errorDisplay {
        text-align: center;
    }
    
    input,
    select {
        width: 160px;
        margin: 3px;
        text-align: center;
        cursor: pointer;
        font-size: 12px;
        border-radius: 2px;
        border: 0;
        background-color: white;
    }
    
    #enter {
        font-size: 11px;
    }
    
    .hidden {
        display: none;
    }
    
    ul {
        text-decoration: underline;
        font-size: 20px;
        margin: 5px;
        padding: 5px;
        text-align: center;
    }
    
    li {
        list-style-type: none;
        text-align: left;
        color: white;
        line-height: 22px;
        padding: 5px;
    }
    
    form {
        margin: 10px;
        padding: 10px;
        text-align: center;
    }
    
    a {
        color: white;
        text-decoration: none;
        cursor: pointer;
    }
    
    .parks {
        text-align: center;
        width: 285px;
        padding: 20px;
        margin: 5px;
        background-color: rgba(1, 6, 27, 0.3);
        border-radius: 8px;
    }
    
    #url {
        text-align: center;
        font-size: 12px;
    }
    
    .address {
        text-align: center;
    }
    
    @media screen and (min-width:750px) {
        main {
            width: 750px;
            margin: 0 auto;
            font-size: 16px;
        }
        .parks {
            width: 500px;
        }
        #parkInfo {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        form {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        #url {
            font-size: 14px;
            text-align: center;
        }
    }