
body{
    background-image: linear-gradient(to right, rgb(7, 135, 221), rgb(4, 36, 66));
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
nav {
    padding: 10px;
    background-color: rgba(17, 17, 17, 0.76);
}
nav p {
    color: whitesmoke;
    margin-left: 10px;
    font-family: 'Architects Daughter', cursive;
    font-weight: 600;
}
input {
    margin-top: 20px ;
    width: 35%;
    line-height: 30px;
    border-radius: 5px;
    border: 1px solid #bbb;
    padding: 5px;
}
input:focus{
    outline: thin;
}
input::placeholder{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 15px;
}
#form {
    display: flex;
    justify-content: center;
}
.card {
    color: white;
    width: 18%;
    margin: 10px;
    padding: 0;
    padding-bottom: 10px;
    border:none;
    border-radius: 5px;
    background-color: #111;
    /* background-image: linear-gradient(to bottom, #fff, #000); */
    text-align: center;
}
.card h2,.card h3 {
    padding: 0px 10px;
}
.card:hover {
    opacity: 0.75;
}
.card img{
    width: 100%;
    height: 360px;
}
#container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 10px;

}
button {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 15px;
    color: white;
    /* background-color: #fff; */
    background-image: linear-gradient(to right, rgb(7, 135, 221), rgb(4, 36, 66));
    border: none;
    border-radius: 3px;
}
.flex {
    display: flex;
    justify-content: flex-start;
}
.fixed-height {
    height: 84px;
}