*{
    margin:0;
    padding:0;
}

body {
    background-color: rgb(255, 255, 255);
    font-family: helvetica;
}

@media only screen and (max-width: 1300px) {
    body {
      background-color: rgb(201, 255, 223);
    }
  }

@media only screen and (max-width: 900px) {
    body {
      background-color: rgb(255, 242, 201);
    }
  }

@media only screen and (max-width: 600px) {
    body {
      background-color: rgb(105, 155, 255);
    }
  }


@font-face{
    font-family: akzidenz;
    src: url(../fonts/Akzidenz-grotesk-black.ttf)
}

@font-face{
    font-family: helvetica;
    src: url(../fonts/Helvetica-Bold.ttf)
}

@font-face{
    font-family: helveticalight;
    src: url(../fonts/helvetica-light-587ebe5a59211.ttf)
}

.navbar {
    height: 12vh;
    display: flex;
    padding-left: 30px;
    padding-right: 40px;
    align-items: center;
    justify-content: space-between;
    font-family: akzidenz;
    
}
nav {
    font-family: akzidenz;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin-left: auto;  
}

nav a {
    text-decoration: none;
    font-size: 18px;
    color: rgb(0, 0, 0);
}

nav a:hover {
    color: rgb(76, 190, 243);
}

article{
    display:inline-block;
    width: 50vw;
    height: 80vh;
}

.img-size{
    width:40vw;
}

.logo img:hover {
    transform: scale(1.2);
}

.opening-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh; 
    width: 100%;
}
.opening-img img {
    width: 500px; 
    animation: slideIn 1.3s ease-out forwards;
    opacity: 0;
    transform: translateX(-100%); 
}

.my-name {
    position: absolute;
    z-index: 2; 
    font-family: akzidenz;
    font-size: 110px; 
    padding-top: 250px;
    color: rgb(76, 190, 243);
    text-align: center;
}


@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/* ------- About Page Layout ------- */

.about-body {
    background-color: #ffffff;
}

.inspo-body {
    background-color: #e4dbff;
}


.projects-body {
    background-color: rgb(255, 251, 201);
}

.about-container {
    max-width: 850px;
    margin: 60px auto;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

.about-img {
    width: 90%;
    max-width: 400px;
}

h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 15px;
    line-height: 1.6;
    color: rgb(0, 0, 0);
}

/* ------- Projects Page Layout ------- */

h2 {
    display: flex;
    justify-content: center;
    font-size: 3em;
    margin-bottom: 15px;
    font-family: helvetica;
}

h3 {
    display: flex;
    justify-content: left;
    font-size: 3em;
    margin-bottom: 15px;
}


.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    
}

.gallery p {
    text-align: center;
    font-size: 17px;
    color: rgb(0, 0, 0);
    font-size: helveticalight;
}

.gallery-item {
    padding: 10px;

    box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
    
}

.logo img,
.gallery-item {
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.06);
}

/* ------- Inspo Page Layout ------- */

.center {
    text-align: center;
}

.inspo {
    width: 45vw;
    display: inline-block;
    margin-bottom: auto;
}

.title {
    font-size: 1.5em;
    color: rgb(38, 63, 106);
    padding-top: 20px;
    padding-bottom: 10px;
    display: block;
    text-align: center;
    font-family: akzidenz;
}

