* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode',
    'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

nav {
  height: 70px;
  background: #a5b0d6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.logo {
  color: #000;
  font-size: 1.3rem;
  font-weight: bold;
  font-style: italic;
}

nav a {
  text-decoration: none;
  color: #000;
  margin-left: 1rem;
}

nav a:hover {
  color: #fff;
}



.artsy {
  background: #a5b0d6;
}

.artsy-container {
  display: block;
  padding: 3rem 1.5rem;
}


.column-left {
  color: #000;
  margin-bottom: 2.5rem;
}

.column-left h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.column-left p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}


button {
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
  border: none;
  color: #fcfcfc;
  background: #000;
  cursor: pointer;
  border-radius: 50px;
}

button:hover {
  background: #fff;
  color: #000;
}


.column-right {
  text-align: center;
}

.artsy-image {
  width: 100%;
  max-width: 320px;
  height: auto;
}


/*about me*/

#about-me {
  width: 100%;
  padding: 90px 0;
  background: #a5b0d6;
}


.about {
  max-width: 85%;
  width: 1130px;
  margin: 0 auto;
  overflow: hidden; 
}


.pic {
  float: left;
  width: 380px;
  height: auto;
  margin-right: 60px; 
  border-radius: 12px;
}

/* text on the right */
.text {
  overflow: hidden; 
}


.text h2 {
  color: #000;
  font-size: 88px;
  font-weight: 600;
  margin-bottom: 8px;
}

.text h5 {
  color: #000;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 22px;
}

.text h5 span {
  color: #554d99;
}

/* paragraph */
.text p {
  color: #030303;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.8px;
  max-width: 540px;
  margin-bottom: 32px;
}


.art {
  font-size: 18px;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 6px;
  display: inline-block;
  transition: 0.4s ease;
}

.art:hover {
  background: #000;
  color: #fff;
}

/*footer-socials*/

footer {
  background-color:#f1eef3;
  width: 100%;
  background-size: cover;
  padding: 35px;
  font-size: 17px;
  color: #7d7cac;
  margin-top: 50px;
}

.footer-socials {
  transition: opacity 1% ease;
  position: relative;
  bottom: 6px;
}

.footer-socials img {
  height: 24px;
}


footer p {
  max-width: 60%;
  padding: 5px;
}

/*mobilefirst*/

@media (min-width: 900px) {
  .artsy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 95vh;
    align-items: center;
    padding: 3rem calc((100vw - 1300px) / 2);
  }

  .column-left {
    padding: 0 2rem;
  }

  .column-left h1 {
    font-size: 3rem;
  }

  .column-left p {
    font-size: 1.5rem;
  }

  .column-right {
    padding: 0 2rem;
  }

  .artsy-image {
    max-width: 600px;
  }
}


@media (max-width: 900px) {
  .pic {
    float: none;
    display: block;
    margin: 0 auto 40px;
  }

  .text h2 {
    font-size: 58px;
  }

  .text p {
    max-width: 100%;
  }
}
