@import "header.css";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
body{

  background: linear-gradient(to right, rgb(167, 5, 137), rgb(24, 6, 159));
}

.header{
  position: static;
}

::-webkit-scrollbar {
  width: 0.7rem;
}

::-webkit-scrollbar-track {
  background: linear-gradient(rgb(167, 5, 137), rgb(12, 1, 23));
  border-radius: 1rem;
}

::-webkit-scrollbar-thumb {
  background-color: tomato;
  border-radius: 1rem;
}



h1 {
  text-align: center;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  line-height: 70px;
}

.cake img {
  height: 380px;
  width: 500px;
  padding: 10px;
}

.middle {
  display: flex;
 
  
}
.para {
  padding: 50px;
}
.flogo {
  height: 50px;
  width: 60px;
}
.footer p {
  font-size: 18px;
  margin-top: 19px;
  font-weight: bolder;
  color: black;
}

.footer {
  margin-top: 10px;
  width: 100%;
  height: 70px;
  background-color: rgb(26, 161, 165);
  display: flex;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  
}

.flogo {
  margin: 0;
  padding: 0;
}

.footertext {
  margin-top: 25px;
  margin-left: 5px;
  padding: 0%;
}


@media screen and (max-width: 600px) {
  
.middle{

 display: flex;
 flex-direction: column;
 color: white;
 font-size: 20px;
width: 100%;
}

.cake{

 display: flex;

}






}