*{
    margin: 1px;
    padding: 1px;
}

header{
	background-color: greenyellow;
	display: flex-start;
    align-items: center;
	width: 100%;
}

nav{
    flex: 1;
    display: flex;
    justify-content: space-evenly;
    overflow: hidden;
    height: 25px;
}

nav a{
    text-decoration: none;
    color: tomato;
    text-shadow: 0px 25px 1px black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-transform: uppercase;
    transition: 0.5s;
    height: 50px;
}

nav a:hover{
    transform: translateY(-25px);
}

button{
	width: 25%;
	height: 35px;
	background-color: #9D3DC2;
	color: white;
	font-size: 22px; 
	font-family: fantasy;
}

footer{
    background-color: brown;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    text-align: center;
    height: 55px;
}