/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;700&display=swap");
/* End Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgb(1, 150, 236);
  font-family: "Jost", sans-serif;
}

/* container */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

/* Content */
.content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0.2rem;
  text-align: center;
  width: 90%;
  border-radius: 25px;
}

/* Profil Picture */
.profil {
  display: flex;
  justify-content: center;
  align-items: center;
}
.profil img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

/* Titles */
.titles h1 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  color: White;
  padding-top: 1rem;
}

.titles h2 {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  color: White;
  padding-bottom: 0.5rem;
  font-family: "Cairo", sans-serif;
}

/* Boxes */

.boxes {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 70%;
}

.box {
  background-color: White;
  padding: 0.8rem;
  width: 100%;
  margin: 1.1rem;
  border-radius: 25px;
}

.box a {
  text-decoration: none;
  color: rgb(1, 150, 236);
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Cairo", sans-serif;
  font-size: 1.1em;
}

.box:hover {
  color: rgb(1, 150, 236);
  background-color: #2b2b2b;
}

.box span {
  margin-left: 1em;
}

/* SocialIcons */
.SocialMedia {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.icon {
  padding: 1.2rem;
}

.icon a {
  color: White;
}

/* Language */

.language {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 2em;
}

.custom-btn {
  width: 100px;
  height: 3em;
  border: 3px solid rgb(1, 150, 236);
  border-radius: 10px;
  font-size: 1em;
  font-weight: bold;
  color: rgb(1, 150, 236);
  background-color: white;
}

.btn-ar {
  font-family: "Cairo", sans-serif;
}

.custom-btn:hover {
  color: rgb(1, 150, 236);
  background-color: #2b2b2b;
}

.notification {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 20px;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  animation: slide-up 0.5s forwards;
}

@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translate(-50%, 100%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
