Newer
Older
body {
margin: 0;
padding: 0;
}
nav {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
padding: 0 5px 0 5px;
}
nav button {
border: 1px solid black;
width: 30px;
height: 30px;
border-radius: 5px;
background: lightgreen;
cursor: pointer;
}
nav button:hover {
background: red;
.dropdown-content {
display: none;
background-color: rgba(0, 0, 0, 0.5);
padding: 20px 0px 20px 0px;
}
.dropdown-content a {
margin: 10px;
width: auto;
text-decoration: none;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: white;
}
.dropdown-content a:hover {
color: red;
}
header {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-image: url("../img/bitcoin-crypto-investment.jpeg");
height: 300px;
width: 100%;