@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  font-family: Roboto, sans-serif;
  display: flex;
  flex-direction: column;

}

img {
  width: 600px;
  /* display:flex; */
}

button {
  font-family: Roboto, sans-serif;
  border: none;
  border-radius: 8px;
  background: #eee;
  
  padding:10px;
  margin:5px;
  /* justify-content: center; */
  /* display:flex; */

}

a {
color:black;
text-decoration:none;
}

input {
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 8px 24px;
  width: 400px;
  margin-bottom: 16px;
  /* display:flex; */
}

.left-links, .right-links{
list-style-type:none;

}

.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /* align-self: flex-start; */
}

.footer {
  display: flex;
  flex-direction: row;
  background-color:#eeeeee;
  flex:0;
  justify-content: space-between;
  align-items: flex-start;
 
}

.left-links {
  display: flex;
  padding:8px;
  /* align-content:center; */
  /* align-self: flex-start; */
  gap:10px;

}

.right-links {
  display:flex;
  padding:8px;
  gap:10px;
}

.content {

  display:flex;
  flex-direction:column;
  align-items: center;
  flex:1;
  /* margin-top:auto; */
}