*{
    border:0; margin:0; padding:0; box-sizing: border-box;
}

body{
    background-color: cadetblue;
}

header{
    height: 10vh;
    display: flex;
}

#head{
    display: block;
    width: 50%;
    height: 10vh;
}

#nav {
    display: block;
    width: 50%;
    height: 10vh;
    text-align: right;
    margin: 10px;
}

#nav a{
    color: lemonchiffon;
    text-decoration: none;
    font-size: 1.8em;
    margin: 10px;
}

h1 {
    text-align: left;
    font-size: 4em;
    text-shadow: 2px 2px black;
    color: lemonchiffon;
    padding: 2vh;
}

#top{
    height: 10vh;
    background-color:rgb(18, 60, 94);
    position: relative;
    display: flex;
}

#top div {
    display: block;
    justify-content: left;
    align-content: center;

}

#picture {
    height: 9vh;
    width: 9vh;
    background-color: tan;
    margin: .5vh;
    background-image: url(/images/lastbike.jpg);
    background-size: 500%;
    background-position: center;
}

#top p {
    color:#eee;
    font-size: 1.6em;
    padding: 5px;
}

#ab{
    position: absolute;
    right: 15vh;
    bottom: 1vh;
}

main {
    height:65vh;
    background-image: url(/images/bikerace.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    background-position-y: -20vh;
}

#padding {
    height: 35vh;
}

#links {
    height: 30vh;
    display: flex;
    justify-content: space-around;
}

#links a{
    display: block;
    height: 28vh;
    width: 24.5%;
    border: solid #eee 2px;
    border-radius: 15px;
    text-align: center;
    color: #eee;
    font-size: 3em;
    text-decoration: none;
    filter: grayscale(100%);
}

#links a:hover {
    border: solid yellow 2px;
    filter: grayscale(0);
    color:yellow;
}

#one{
    background-image: url(/images/bike1.jpg);
    background-size: cover;
}

#two{
    background-image: url(/images/bike2.jpg);
    background-size: cover;
    background-position: bottom;
}

#three{
    background-image: url(/images/bike3.jpg);
    background-size: cover;
    background-position: bottom left;
}

#four{
    background-image: url(/images/bike4.jpg);
    background-size: cover;
}

#bottom {
    height: 10vh;
}

h2 {
    text-align: center;
    padding: 1vh;
    font-size: 2em;
}

#botnav{
    display: flex;
    justify-content: center;
    border-bottom: 1px dotted black;
}

#botnav a {
    /* text-align: bottom; */
    /* line-height: 2vh; */
    color:#eee;
    font-size: 1.5em;
    margin: 0px 3vw;
    padding-bottom: 5px;
}

footer {
    height: 2vh;
    text-align: center ;
    /* border-top: 1px dotted black; */
    line-height: 5vh;
    font-size: 1.2em;
}