* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}
:root {
  --purple: #9cb0ce;
  --grey: #5d5d6e;
  --light: rgb(174, 174, 174);
}
html,
body {
  height: 100%;
  width: 100%;
  padding-top: 65px;
  margin-bottom: 35px;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 999;
  padding-top: 10px;
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
}
.header-left {
  display: flex;
  align-content: center;
}
.logo-text {
  font-size: 35px;
  color: var(--light);
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}
header ul {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  z-index: 999;
}
header ul li {
  margin: 25px;
}
nav a {
  text-decoration: none;
  color: var(--light);
  font-size: 20px;
  font-weight: 300;
}
nav a:hover {
  color: var(--purple);
  transition: color 0.2s ease-in;
}

.icon-wrapper {
  width: 50px;
}
main {
  display: flex;
  flex-direction: column;
  margin: 40px;
  justify-content: center;
  align-items: center;
}
.intro {
  line-height: 1.8;
  color: var(--grey);
  text-align: center;
  font-weight: 300;
  padding: 60px;
}
.intro h2 {
  font-size: 50px;
}
.intro h3 {
  margin-bottom: 20px;
}
.intro p {
  font-size: 21px;
}
.special {
  color: var(--purple);
  font-weight: bold;
}

.btn {
  background-color: var(--purple);
  border: none;
  color: white;
}
.btn:hover {
  background-color: var(--light);
  color: white;
}
.btn:disabled {
  background-color: var(--purple);
}

.about-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.about-left {
  margin: 15px;
  padding: 5px;
  border-radius: 50%;
  border: 1px solid var(--light);
}
.avatar {
  border-radius: 50%;
  width: 90px;
}
.about-right {
  width: 100%;
  padding: 20px;
  margin-left: 10px;
}

.about-right p {
  font-size: 20px;
  font-weight: 300;
  color: var(--grey);
}
.about-right a {
  color: var(--purple);
  font-weight: bold;
  text-decoration: none;
}
.about-right a:hover {
  color: var(--grey);
  transition: color 0.2s ease-in;
}
.currently-reading {
  padding: 5px;
  background-color: var(--purple);
  color: rgba;
}
.book {
  font-style: italic;
  color: rgb(255, 255, 255);
}
.content-wrapper {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}
.top {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.top h2 {
  font-size: 50px;
  color: var(--purple);
  font-weight: bold;
}
.top p {
  font-size: 21px;
}
.projects-wrapper {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  margin: 20px;
  text-align: center;
  font-size: 21px;
  padding: 10px;
  border-radius: 5px;
}
.card-body {
  display: flex;
  direction: row;
  justify-content: space-around;
}
.card-heading {
  border-bottom: none;
  margin-bottom: 2px;
  font-weight: 100;
  color: var(--grey);
}
.modal-button {
  text-decoration: none;
  color: var(--purple);
}
.modal-button:hover {
  background-color: var(--grey);
  color: white;
  transition: background-color 0.2s ease-in;
}

.modal-image {
  max-width: 400px;
}
.modal-image img {
  width: 100%;
}
.modal-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.modal-text {
  font-size: 20px;
}
.tech {
  background-color: var(--purple);
  text-align: center;
  font-size: 1.2rem;
}
.deployment-button {
  height: 50px;
  width: 40%;
  margin-right: 10px;
  background-color: var(--grey);
  border: 1px solid black;
}
.deployment-button a {
  font-size: 1.33rem;
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
}
.repo-link {
  font-size: 1.33rem;
  color: var(--purple);
  font-weight: bold;
  text-decoration: none;
}
.repo-link:hover {
  color: var(--purple);
}
.close {
  color: white;
  font-size: 50px;
  font-weight: bold;
  margin-right: 15px;
  background-color: var(--light) !important;
}
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
#contact-wrapper {
  display: flex;
  justify-content: space-around;
  align-content: center;
  text-align: center;
}
.contact {
  width: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  margin: 30px;
}
.contact-header {
  text-align: center;
  font-size: 50px;
  margin-bottom: 50px;
  color: var(--purple);
  font-weight: bold;
}
