/* Styles for my travel website*/

*{
    margin: 0;
    padding: 0;
}

body {
    background-color: aliceblue;
}

#wrapper{
    width: 940px;
    margin: 20px auto;
}

header{
    height: 200px;
    background: yellow;
}

nav{
    height: 50px;
    background-color: rgb(155, 155, 217);
}

#hero{
    height: 300px;
    background-color: rgb(253, 3, 3);
}

main{
    width:580px;
    height: 400px;
    background-color: green;
    float: left;
}

aside{
    width:340px;
    height: 350px;
    background: pink;
    float: right;
}

footer{
    height: 50px;
    background-color: blueviolet;
    clear: both;
}