:root {
  --main-color: #d83200;
  --secondary-color: #000000;
}

html {
  scroll-behavior: smooth;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background-color: var(--main-color);
  width: 100%;
}
.container {
  width: 90%;
}

@media (max-width: 300px) {
  .container {
    width: 360px;
  }
}

/* small  */

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

/* medium*/

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

/* large */

@media (min-width: 1200px) {
  .container {
    width: 1100px;
  }
}

/* start header */
/* start header */
/* start header */
.header {
  background-color: #ffffff;
}

.header .container {
  display: flex;
  justify-content: space-between;

  align-items: center;
}

.header img {
  width: 110px;
  margin: 0px;
  padding: 0px;

  animation-name: thebest;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes thebest {
  0% {
    translate: 0 0;
  }
  50% {
    translate: 20px 0;
  }

  100% {
    translate: 0 0;
  }
}

.header .container .name {
  color: var(--main-color);
}

.header .container .name span {
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .header {
    background-color: #fff;
    height: 50px;
    padding-bottom: 20px;
    padding-top: -200px;
    margin-top: 0px;
  }

  .header img {
    width: 40px;
  }

  .header .container .name {
    font-size: 14px;
    color: var(--main-color);
    padding-right: 10px;
  }
}

/* The menu */
/* The menu */
/* The menu */

.title {
  width: 100%;
  margin-top: 20px;
  margin-bottom: -25px;
  margin: auto;
  text-align: center;
  color: #ffffff;
  text-align: center;
}
.title .container {
  text-align: center;
  width: 100%;
}
.title .text {
  font-size: 50px;
}

.title .text:hover {
  color: #030303;
  font-size: 55px;
}

/* start menu */
/* staer menu */
/* start menu */

.menu .container {
  margin-top: 50px;

  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));

  gap: 0px;

  direction: rtl;
}

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

.menu img {
  width: 100%;
  height: 800px;
}

@media (max-width: 500px) {
  .menu .container {
    margin-top: 50px;

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));

    gap: 5px;
  }

  .menu img {
  width: 95%;
  height: 800px;
  margin: auto;
}

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

 

 

/* start container 22222*/
/* start container 22222*/
/* start container 22222*/

.container form {
  margin-top: -15px;
  margin-bottom: 0px;
  padding-bottom: 5px;

  text-align: center;
}

.container form .text {
  text-align: center;

  font-size: 40px;
  color: var(--secondary-color);
  line-height: 2;
}

.container form a {
  font-size: 40px;
  background-color: rgba(120, 56, 56, 0.447);
  color: #ffffff;

  border: 2px solid black;
  padding: 5px;
}

.container form a:hover {
  color: var(--secondary-color);
  font-size: 45px;
}

.container {
  margin: auto;
}
