@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
}

a {
    text-decoration: none;
    color: #111;
    font-size: 15px;
    font-weight: 800;
    transition: color 0.5s ease;
}

.header {
    margin: 0 auto;
    width: 600px;
    position: relative;
}

header {
    padding: 25px 0;
    position: relative;
    left: -400px;
    top: -10px;
}

header nav {
    float: right;
    width: 100%;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

header nav ul li a:hover {
    color: #51BAC9;
    transition: all 0.5s ease;
}

.headback {
    width: auto;
    height: 48px;
    border: 0.2px solid rgba(0, 0, 0, 0.60);
    opacity: 0.95;
    background: #D9D9D9;
    position: relative;
    z-index: 3;
}

header nav ul li.active a {
    color: #51BAC9;
}

.search {
    float: right;
    z-index: 4;
    position: relative;
    top: -35px;
    right: 50px;
    width: 400px;
    height: 40px;
    display: flex;
    justify-content: space-between;
}

.search ::placeholder {
    color: #6f6d6d;
    font-family: Inter;
    font-size: 14px;
    font-weight: 800;
}

.search form {
    width: 315px;
    height: 29px;
    border-radius: 50px;
    background: #000;
    position: relative;
    top: -4.5px;
}

.search form input {
    width: 276px;
    height: 21px;
    border-radius: 50px;
    background: #FFF;
    position: relative;
    top: -1.2px;
    right: -5px;
    border: none;
    padding: 5px 7px;
    font-family: Inter;
    font-size: 14px;
    font-weight: 800;
}

input[type="search"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
}

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

.search form button {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    top: 4px;
    right: -4px;
}

.title {
    width: auto;
    height: 185px;
    border-bottom: 3px solid #000;
    position: relative;
    top: -100px;
}

.title h1 {
    width: 1019px;
    height: 111px;
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 125px;
    font-weight: 900;
    line-height: normal;
    position: relative;
    top: 20px;
    right: -275px;
    z-index: 2;
    letter-spacing: 3px;
}

.gallery-img {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    padding: -200px;
    position: relative;
    top: -50px;
}

.gallery {
    width: 400px;
    height: 600px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
