/* Typography imported from Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&family=Staatliches&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");

/* General Styles */
body {
  font-family: "Quicksand", sans-serif;
  padding: 1rem;
  background: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
}
a {
  text-decoration: none;
  font-weight: 600;
  color: rgb(47, 47, 47);
}
h2 {
  font-family: "quicksand", sans-serif;
  font-weight: 700;
  font-size: 2rem;
}
h3 {
  font-family: "quicksand", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
header {
  font-family: "Anton", sans-serif;
  font-weight: 600;
  color: black;
  font-size: 4rem;
}
/* Specific Class Styles */

.indexpage {
  background-color: aqua;
  background-image: url(daisies.jpg);
}
.intro {
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}
.intro-paragraph {
  text-align: center;
}
.daisy1 {
  display: inline-block;
  vertical-align: middle;
  height: 30px;
  width: 30px;
  background-image: url(daisy.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 5px;
  margin-right: 5px;
}
.title {
  padding-top: 0.5rem;
  display: flex;
  justify-content: center;
  color: rgb(128, 174, 162);
}

.buttonlink {
  border-radius: 100px;
  display: inline-block;
  background-color: rgb(211, 155, 70);
  padding: 0.5rem;
  background-size: 20px;
  justify-content: center;
}
.buttonlink:hover {
  background-color: white;
  color: rgb(211, 155, 70);
}
.decor {
  display: flex;
  justify-content: center;
}

.links {
  width: 75%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
}
.button {
  border-radius: 50px;
  display: flex;
  justify-content: center;
  background-color: rgb(255, 255, 255);
  padding: 0.5rem;
  border: 0.1rem solid black;
  width: 55%;
}
.button:hover {
  background-color: rgb(211, 155, 70);
  color: white;
}

.contactsection {
  border-bottom: 2px solid black;
  padding: 1rem;
  width: 100%;
}
.experience {
  border-bottom: 2px solid black;
  padding: 1rem;
  width: 100%;
}

.education {
  border-bottom: 2px solid black;
  padding: 1rem;
  width: 100%;
}

.paragraph-md {
  font-size: 1rem;
  color: black;
  font-family: "quicksand";
  padding-bottom: 1rem;
}
.paragraph-sm {
  font-family: "quicksand";
  font-size: 0.75rem;
  color: black;
  font-weight: 100;
}
.wrapper {
  border: 10px solid white;
  border-radius: 3rem;
  padding: 3rem;
  background-color: rgb(202, 227, 165);
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  body {
    background: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .button {
    display: flex;
    border-radius: 100px;
    background-color: rgb(255, 255, 255);
    justify-content: center;
    padding: 0.5rem;
    align-items: center;
    width: 25%;
  }
  .button:hover {
    background-color: rgb(211, 155, 70);
    color: white;
  }
  h2 {
    font-family: "quicksand", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contactsection {
    border-bottom: 2px solid black;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 50%;
  }

  .experience {
    border-bottom: 2px solid black;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 50%;
  }

  .education {
    border-bottom: 2px solid black;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 50%;
  }
  .experience-1,
  .experience-2,
  .education-1,
  .education-2,
  .contact-1,
  .contact-2 {
    width: 50%;
    background: rgb(255, 255, 255);
  }
}
