:root {
  --main-color: #d70000;
  --secondary-color: #000000f1;
}
d70000f1
FFA500
ffaa0d
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%;
  /* padding-left: 15px; */
  /* padding-right: 15px; */
  /* margin-right: auto; */
  margin: auto;
}

 @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: 900px;
  } */
}

/* 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: #000000 ;
}

.header .container .name span {
  color: #eb0000;
 }

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

  .header img {
    width: 40px;
  }

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

 

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

.profile {
  background-color: var(--main-color);
  text-align: center;
  color: #ffffff ;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 900;
    font-weight: lighter;

}

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

.profile .text {
  padding-top: 10px;
  font-size: 30px;
  font-weight: 900;
    font-weight: lighter;

 }
@media (max-width: 500px) {
  .profile .text p {
    padding-top: 10px;
    font-size: 25px;
        font-weight: lighter;

   }
}

.profile .text span {
  font-size: 35px;
  font-weight: 800;
          font-weight: lighter;
          font-weight: unset;


}

.profile .icon {
  padding-top: 20px;
  word-spacing: 15px;
          font-weight: lighter;

}

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

.profile .icon i:hover {
  font-size: 40px;
  color: var(--secondary-color);
}

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

.contant {
 
  padding-top: 50px;

  background-color: var(--main-color);

  text-align: center;
  padding-bottom: 48px;
    font-weight: lighter;

}

.contant a {
  width: 100%;
  font-size: 25px;
  color: #ffffff ;
  text-decoration: none;
  font-weight: lighter;
 
}

.contant .col span {
  display: none;
}

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

.contant .col:hover span {
  display: inline;
  color: var(--secondary-color);
    font-weight: lighter;

}

.contant .col:hover {
  height: 50px;
  width: 110%;
  display: flex;
  justify-content: center;
  align-items: center;
  border:var(--secondary-color)  2px solid;
  border-radius: 100px;
 
}

.contant .col:hover i {
 
  color: var(--secondary-color);
}

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

    background-color: var(--main-color);

    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: 20px;
     text-decoration: none;
  }

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

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

    background-color: var(--main-color);

    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: 15px;
     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);
  }
}
