@charset "UTF-8";
* {margin: 0; padding: 0; box-sizing: border-box; border-radius: 0;font-family:sans-serif;}

body {
    background: #333;
}
.container {
    width: calc(100% - 16px);
    max-width: 400px;
    margin: 16px auto 0;
}
nav {
    margin-bottom: 24px;
    letter-spacing: 4px;
}
a {
    text-decoration: none;
    padding: 0 8px;
    font-size: 22px;
    color: white;
    border-radius: 10px;
    text-shadow: 1px 1px 1px rgba(0,0,0,1);
    box-shadow:  4px 4px 4px rgba(0,0,0,1);
    background-image: linear-gradient(-45deg, #ccc 0%, #868888 20%, #d8dcdc 34%, white 53%, #ccc 100%);
}
section {
    color: #fff;
    text-shadow:
        0 0 8px mediumspringgreen,
        0 0 16px mediumspringgreen;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #777;
    margin-bottom: 12px;
}
select {
    width: 100%;
    background: #fff;
    font-size: 16px;
    height: 30px; line-height: 30px;
    border: none;
    border-radius: 3px;
    margin-bottom: 16px;
}