 :root {
  --main-color: #000;
  --secondary-color: #ffd000;
}

html {
  scroll-behavior: smooth;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  --main-color: #ffffff;
  background-color: var(--main-color);
  width: 100%;
  background-image: url("../image/back1.jpg");
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.415);
  z-index: -1;
}


.container {
  width: 90%;

  margin: auto;
}




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

.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: #000;
}

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

@media (max-width: 768px) {
  .header {
    height: 50px;
    margin-top: -5px;
    padding-bottom: 70px;
  }

  .header img {
    width: 60px;
  }

  .header .container .name {
    font-size: 16px;
  }

  body {
    background-color: var(--main-color);
    width: 100%;
    background-image: url("../image/back2.jpg");
    background-size: cover;
    background-attachment: fixed;
  }
}



/* start  profile */
/* start  profile */
/* start  profile */

.profile {
  text-align: center;
  color: #ffd000;
  padding-top: 20px;
  padding-bottom: 20px;
  direction: rtl;
}

.profile .image img {
  width: 200px;
  border-radius: 50%;
}

.profile .text {
  margin-top: -70px;
  font-size: 25px;
  line-height: 0.9;
}

@media (max-width: 500px) {
  .profile .text p {
    padding-top: 10px;
    font-size: 12px;
    line-height: 0.1;
  }
}

.profile .text p i {
  color: #ffffff;
}

.profile .text span {
  font-size: 30px;
  font-weight: 1000;
}

.profile .icon {
  padding-top: 20px;
  word-spacing: 15px;
}

.profile .icon i {
  font-size: 25px;
  color: #ffd000;
}

.profile .icon i:hover {
  font-size: 40px;
  color: #FFF;
}

/* start   contant */
/* start   contant */
/* start   contant */

.contant {

  padding-top: 50px;

  color: #ffd000;
  text-align: center;
  padding-bottom: 48px;
}

.contant a {
  width: 100%;
  font-size: 40px;
  font-weight: 900;
  color: #ffd000;
  text-decoration: none;
}

.contant .col span {
  display: none;
}

.contant .col {
  background-color: rgba(0, 0, 0, 0.493);
  height: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: #ffd000 2px solid;
  border-radius: 100px;
  font-weight: 900;
}

.contant .col:hover span {
  display: inline;
  color: #ffd000;
}

.contant .col:hover {
  height: 50px;
  width: 110%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: #ffffff 2px solid;
  border-radius: 100px;
}

.contant .col:hover i {
  color: #FFF;
}

@media (min-width: 500px) {
  .contant {
    padding-top: 30px;


    text-align: center;
    padding-bottom: 48px;
  }

  .contant .col {
    height: 50px;
    width: 65%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
  }

  .contant a {
    width: 100%;
    font-size: 29px;
    text-decoration: none;
    font-weight: 900;

  }

  .contant .col:hover {
    height: 50px;
    width: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
  }
}

@media (max-width: 500px) {
  .contant {
    padding-left: 0px;
    width: 350px;


    text-align: center;
    padding-bottom: 150px;
  }

  .contant .col {
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
  }

  .contant a {
    font-size: 20px;
    text-decoration: none;
  }

  .contant .col:hover {
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
  }

  .contant .col:hover span {
    display: none;
    color: var(--secondary-color);
  }
}

.time {

  font-size: 30px;
  font-weight: 700;

}

.time .container {
  color: #ffd000;
  text-align: center;

  span {
    color: #ffffff;
  }
}
