@import url(https://fonts.googleapis.com/css?family=Montserrat);

* {
  padding: 0px;
  font-family: Montserrat;
  color: white;
  align-items: center;
}

body {
  background-color: #0d1117;
  position: relative;
}

.profile_pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
  margin-bottom: 15px;
  animation: animate-profile-picture 800ms 200ms backwards;
  margin-top: 25px;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header_paragraph {
  margin-top: 0.1px;
  color: white;
  font-family: Montserrat;
  font-size: 27px;
  margin-bottom: 0%;
}

/**/

.container {
  width: 350px;
  background-color: none;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  margin-top: 50px;
  margin: auto;
}

.container input,
.container textarea {
  width: 100%;
  padding: 10px;
  border: none;
  background-color: rgba(68, 134, 239, 0.205);
  border-radius: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  color: white;
}

.btn {
  border: none;
  cursor: pointer;
  background-color: rgb(68, 134, 239);
  font-size: 16px;
  width: 105%;
  padding: 14px;
  border-radius: 20px;
  margin: auto;
}

.btn:hover {
  background-color: rgb(34, 111, 235);
  color: white;
}

.socials {
  margin-right: auto;
}

.button-social-header {
  background-color: rgb(51, 71, 86);
  border: 2px solid rgb(51, 71, 86);
  border-color: rgb(51, 71, 86);
  padding: 10px;
  font-size: 20px;
  border-radius: 20px;
  margin-top: 1%;
  margin-right: 1%;
  width: 125px;
  height: 60px;
  position: absolute; /* Positioning the button */
  top: 0; /* Align to the top */
  right: 0; /* Align to the right */
}

.button-social-header:hover {
  cursor: pointer;
  background-color: #0d1117;
}

.socials {
  text-align: right;
  margin-right: 50px;
  font-size: 20px;
  text-decoration: none;
}

.socials:hover {
  color: #d6d6d6;
}

.copyright {
  display: flex;
  flex-direction: column;
}

.copyright-p {
  color: gray;
  font-size: 18px;
}

@media only screen and (max-width: 768px) {
  .container {
    width: 120%;
  }
}
