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

a:hover{
  color:red;
}

a:active{
  color:green;
}

* {
  box-sizing: border-box;
}

.container{
  width: 95%;
  margin:auto;
}

.index-container{
  width: 100%;
  margin: auto;
}

body{
  background-color:#ddd;
  color:black;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  font-size: 15px;
  line-height: 1.4em;
  margin: 0;
}

body h1{
  margin-bottom: 35px;
  margin-top: 40px;
  font-size: 40px;
}


.header-container{
  color: black;
  display: flex;
  justify-content: center;
  background-color:#ddd;
}

.header{
  height: 80px;
  width: 1800px;
  display: flex;
  justify-content: flex-start;
  padding-bottom: 120px;
  margin-left: 20px;
  margin-top: 20px;
  font-size: 32px;
  font-family: Arial black (sans-serif);
  border-bottom: 1px darkgray solid;
}

.header-img{
  margin-right: 20px;
  margin-top: 5px;
}

.home-container{
  height: 600px;
  margin-top: 50px;
  margin-left: 100px;
  margin-right: 100px;
  display: flex;
  justify-content: center;
}

.quotebox{
  height: 50px;
  width:800px;
  margin: 0 auto;
  margin-top: 50px;
  justify-content: center;
  font-size: 20px;
  text-align: center;
  color: black;
}

.button-container{
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.button-container1{
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items:flex-start;
}

.button-box{
  flex: 1;
  margin: 10px;
  height: 200px;
  width: 950px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.button-box1{
  flex: 1;
  margin: 10px;
  margin-left: 10px;
  height: 300px;
  width: 500px;
  display: flex;
  flex-direction: column;
}

.button{
  flex: initial;
  margin: 10px;
  background: none;
  width: 350px;
  height: 150px; 
  font-size: 26px;
  font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  cursor: pointer;
  transition: 0.5s;
  color: black;
  background-color: #fff;
  border: 0.3px black solid;
  border-radius: 5px;
}

.btn1{
  background-color: #a7e99c;
}

.btn2{
  background-color: #bfeeb7;
}

.btn3{
  background-color: #d7f4d2;
}

.button:hover{
  color: red;
}

.homebtn{
  background-color: #f6e3ba;
  cursor: pointer;
}

.randombtn{
  border: 0.5px black solid;
  cursor: pointer;
  padding: 3px;
}

.recipe-box {
  background-color:white;
  border: 1px black solid;
  border-radius: 15px;
  margin: 20px 0;
}

.intro {
  margin-top: 45px;
  width: 700px;
}



