<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: rgb(190, 49, 68);
  --primary-text-color: rgb(240, 240, 240);
}

html {
  font-size: 62.5%;
  font-family: Poppins, sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  width: 100%;
  font-size: 1.8rem;
  color: var(--primary-text-color);

}

header {
  display: flex;
  justify-content: flex-end;
  background-color: var(--primary-color);
  padding-right: 2rem;
  position: sticky;
  top: 0;
  z-index: 99;
  overflow: hidden;
}

header ul {
  list-style: none;
}

nav &gt; ul {
  display: flex;
  justify-content: space-between;
}

a {
  color: inherit;
  text-decoration: none;
  font-size: 2.2rem;
  display: inline-block;
  padding: 2rem 2.5rem;
  transition: background-color 0.2s linear;
}

header a:hover {
  background-color: rgb(69, 86, 125);
}

section {
  min-height: 100vh;
}

section#welcome-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: black;
  /* background: linear-gradient(62deg, #3a3d40 0%, #181719 100%);  */
  background-image: url("../images/transitionsL.jpg");
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: auto;
  
  
  text-align: center;
}

section#welcome-section h1 {
  font-size: 5rem;
  font-family: Cinzel, serif;
  transform: translateY(-5rem);
}

section#welcome-section p {
  font-size: 3rem;
  /* font-style: italic; */
  color: var(--primary-color);
  transform: translateY(-5rem);
}

section#projects {
  padding: 10rem 2rem 5rem;
  background-color: rgb(69, 86, 125);
  text-align: center;
}

section#projects &gt; h2 {
  text-align: center;
  margin-bottom: 8rem;
  font-size: 4.2rem;
  padding-bottom: 0.4rem;
  display: inline-block;
  border-bottom: 2px solid var(--primary-text-color);
}

section#projects &gt; a {
  display: inline-block;
  padding: 1rem 2rem;
  margin: 4rem auto;
  background-color: rgb(48, 56, 65);
  font-size: 2rem;
  transition: all 0.2s linear;
}

i {
  transition: all 0.2s linear;
}

section#projects &gt; a:hover {
  background-color: var(--primary-color);
}

section#projects &gt; a:hover i {
  transform: translateX(2px);
}

.project-tile {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
  max-width: 136rem;
  width: 100%;
  margin: auto;
  grid-column-gap: 4rem;
  grid-row-gap: 6rem;
}

.project-tile a {
  padding: 0;
  display: block;
}

figure {
  text-align: center;
  display: block;
  width: 100%;
  height: 100%;
}

c{
  padding: 1.5rem;
  margin-top: -1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 1rem 1rem;
  background-color: rgb(48, 56, 65);
  height: calc(100% - (100% - 8rem));
}

figcaption::before,
figcaption::after {
  color: #ff7f50;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

figcaption::before {
  content: '. ';
}

figcaption::after {
  content: ' .';
}

.project-tile a:hover figcaption::before {
  content: '. ';
  opacity: 1;
}

.project-tile a:hover figcaption::after {
  content: ' .';
  /* content: ' .'; */
  opacity: 1;
}

.project-tile a:hover img {
  opacity: 0.6;
}

.project-tile img {
  object-fit: cover;
  border-radius: 1rem 1rem 1rem 1rem;
  transition: opacity 0.2s ease-in-out;
  width: 100%;
  height: calc(100% - 8rem);
}

section#contact {
  background-color: rgb(48, 56, 65);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

section#contact h2 {
  font-size: 6rem;
}

section#contact p {
  font-style: italic;
  margin-bottom: 2rem;
}

section#contact p {
  font-style: italic;
  margin-bottom: 3.5rem;
}



section#contact a {
  transition: transform 0.3s ease-out;
}

section#contact a:hover {
  transform: translateY(0.8rem);
}

footer {
  background-color: rgb(48, 56, 65);
  padding: 4rem;
  border-top: 4px solid var(--primary-color);
  font-size: 70%;
}

footer a {
  font-size:inherit;
  padding: initial;
  overflow: hidden;
  flex-direction: row;
  align-items: center;
}

@media (max-width: 1200px) {
  footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
}

@media (max-width: 460px) {
  html {
    font-size: 50%;
  }

  header {
    padding: 0;
    justify-content: center;
  }
}

@media (max-width: 300px) {
  html {
    font-size: 45%;
  }

  a {
    padding: 2rem 1rem;
  }
}

section#lookat {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(62deg, #313030 0%, #181719 100%);
  text-align: center;
}

section#lookat h1 {
  font-size: 4rem;
  transform: translateY(-3rem);
}

section#lookat p {
  font-size: 2rem;
  font-style: italic;
  color: var(--primary-color);
  transform: translateY(-4rem);
}

section#lookat ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
section#lookat i {
  margin-right: 1rem;
}
#ayak{
  color: crimson;
}
#logo {
  size: 100%;
}

#box1, #box2{
  display: inline-block;
  flex-wrap:wrap;
}

#box1 ul{
  list-style:none;
}
#box2 ul{
  display: flex;
  list-style:none;
  justify-content:space-evenly;
  flex-wrap: wrap;
}</pre></body></html>