:root {
  --primary: #6900cd;
  --lightPrimary: #6769a6;
}

* {
  font-family: "Montserrat", system-ui;
  font-optical-sizing: auto;
  /* font-weight: <weight>;
  font-style: normal; */
}

body,
html {
  margin: 0px;
  padding: 0px;
  scroll-behavior: smooth;
  /* min-width: 350px; */
}

a {
  text-decoration-line: none !important;
}

/* global selectors */
input,
textarea {
  border: 1px solid #e7e7e7;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.divider {
  height: 2px;
  background: #e7e7e7;
  max-width: 500px;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}

.rounded_card {
  padding: 20px;
  background: #ffffff;
  border-radius: 20px;
  margin-left: 15px;
  box-shadow: 1px 1px 4px 3px #e7e7e7;
  cursor: pointer;
  width: 30%;
}

.rounded_card:hover {
  background: #e7e7e7;
}

.logo_wrapper {
  border: 1px dashed var(--primary);
  font-weight: bold;
  font-size: 13px;
  padding: 5px;
  letter-spacing: 5px;
  background-color: var(--lightPrimary);
  color: white;
}
.navbar {
  background: #ccc;
  padding: 20px;
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 1;
}

.nav_item {
  font-weight: bold;
}

.flex_container {
  display: flex;
  padding: 5px;
}

.justifier_navbar {
  justify-content: space-between;
}

.profile_image {
  height: 300px;
  width: 300px;
  background: blue;
  border-radius: 50%;
  background: url("./../Images/image1.jpg");
  background-size: cover;
  background-position: center;
}
.primary_button {
  cursor: pointer;
  margin-top: 10px;
  padding: 15px;
  border-radius: 10px;
  border: 0;
  background-color: var(--primary);
  color: #fff;
  font-weight: bold;
  box-shadow: 5px 5px 5px 5px #d6c3e6;
  transition: all 0.2s;
}
.primary_button:hover {
  padding: 18px;
}

.primary_banner {
  background: var(--primary);
  padding: 30px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.contact_picture {
  background: red;
  border-radius: 50%;
  height: 350px;
  width: 350px;
  background: url("./../Images/contact.jpg");
  background-position: center;
  background-size: cover;
}

.footer {
  background: black;
  color: white;
  padding: 10px;
  text-align: center;
}
