@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
h1, h2 {
    font-family: 'Roboto', sans-serif;
}

html {
    padding:0;
    margin:0;
}
.menu {
    margin-top:0px;
    display:block;
    padding:15px 0;
    text-align:center;
}
.menu-item {
    list-style:none;
    display:inline-flex;
    align-items: center;
    margin:15px;
}
body {
    background-image: url('../images/matrix-background.webp');
    color:white;
    padding:0;
    margin:0;
}
header {
    background-color:greenyellow;
}
h1 {
    text-align: center;
    font-size: 40px;
}
.image-container {
    text-align: center;
}
.image {
    border: solid white 8px;
    border-radius: 15px;
    width: 50%;
}
.paragraph {
    font-size: 20px;
    background-color:aquamarine;
    color:brown;
    padding: 10px;
    border-radius: 15px;
    margin: 10px 40px;
}
.download-button {
    position: fixed;
    background-color: crimson;
    border: solid rgb(164, 150, 150) 2px;
    border-radius: 10px;
    padding: 20px;
    font-size: 16px;
    left: 10px;
    bottom: 10px;
    color: white;
}
