@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Metrophobic&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

li, a, button {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #1E1E1E;
    text-decoration: none;
    letter-spacing:0.15em;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 3%;
    background-color: #FBE7CD;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.nav_links {
    list-style: none;
    display: flex;
    gap: 100px;
}

.nav_links li {
    display: inline-block;
}

.nav_links li a {
    transition: all 0.3s ease 0s;
}

.nav_links li a:hover {
    color: #5788C0;
}

header .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.cta {
    margin-left: auto;
}

button {
    padding: 9px 25px;
    background-color: #FBE7CD;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

button:hover {
    background-color: #5788C0;
}

body {
    margin: 0;
    background-color: #5788C0;
}

h1 {
    font-family: "Metrophobic", sans-serif;
    font-weight: 400;
    font-size: 48px;
    color: #FBE7CD;
    text-decoration: none;
    -webkit-text-stroke: 1px #FBE7CD;
    letter-spacing: 0.1em;
}

.portfolio_container {
    max-width: 1224 px;
    width: 90%;
    margin: auto;
    padding: 100px 0;
    
}

.title {
    margin-bottom: 2rem;
    text-align: center;
}

.photo_gallery {
    display: flex;
    gap: 20px;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width:768px) {
    .photo_gallery{
        flex-direction: column;
    }
}

@media (max-width:1250px) {
    header .logo {
        display: none;
    }
}