@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca&family=Nunito&display=swap');

body {
  font-family: Work Sans, sans-serif;
  font-size: 18px;
  line-height: 1.5;

  color: #333333;
  background-color: #f5f2ed;

  user-select: none; /* supported by Chrome and Opera */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
}

a {
  color: #333333;
}

header {
  border-bottom: 1px solid #333;
  background-color: #B1D467;
}

header,
footer,
.description {
  padding: 24px;
  transition: 0.4s background-color;
}

/* HEADER _________________________________________ */

.logo {
  position: fixed;
  z-index: 100;
}

header p {
  margin-left: 120px;
}

/* WORK SECTION ___________________________________ */

.project {
  display: flex;
  width: 100%;
}

.project img {
  width: 30%;
}

.description {
  max-width: 440px;
  margin-left: 144px;

  display: flex;
  gap: 40px;
}

.description > * {
  min-width: 232px;
}

.description .tags {
  display: flex;
  flex-direction: column;
}

.description p,
.description .tags {
  font-size: 14px;
}

/* PAINTING SECTION _______________________________ */

section.paint {
  position: relative;
  cursor: crosshair;
}

section.paint .description {
  position: absolute;
}

div.canvas {
  line-height: 0;
}

div.toolbox {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 132px;
  padding: 24px;
}

button {
  font-size: 14px;
  font-family: Work Sans;
  line-height: 1;

  width: 100%;
  height: 32px;
  margin-bottom: 16px;

  border: none;
  border-radius: 16px;
  box-shadow: 0 0 calc(6 / 16 * 1rem) rgba(0, 0, 0, 0.2);

  background-color: #ffffff;
  transition: 0.4s background-color;
}

button:hover {
  /* background-color: #f0dff8; */
  cursor: pointer;

  box-shadow: inset 0 0 calc(6 / 16 * 1rem) #000aff;
}

@media (max-width: 400px) {
  body {
    font-size: 18px;
  }

  header p {
    margin-left: 0;
  }

  header p::before {
    content: 'Arianna Ninh ';
    color: transparent;
  }
}

@media only screen and (max-width: 480px) {
  section.paint {
    display: none;
  }
}
