@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

header {
    padding: 40px 0;
}



header img {
    width: 400px;
    margin: 20px 0px;
}

body {
    line-height: 1.7;
    color: #333;
    font-family: Arial, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    margin-top: 80px;
}

h2 {
    font-size: 50px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    letter-spacing: 3px;
    border-bottom: 1px dotted #999;

}

h3 {
    font-size: 30px;
    letter-spacing: 5px;
}

.hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.scroll-arrow{
    text-align:center;
    margin:40px 0;
}

.scroll-arrow p {
    font-size: 30px;
    color: #333;
    line-height: 2;
}

.wrapper {
    width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-box {
    display: flex;
    padding: 40px 20px;
    align-items: center;
    gap: 40px;
}

.about-img img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.works-list {
    display: flex;
    gap: 30px;
}

.works-list a {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.work-img {
    position: relative;
    overflow: hidden;
}

.work-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    transition: 0.3s;
}

a:hover .work-img::after {
    background: rgba(0, 0, 0, 0.4);
}

.works-list p {
    text-align: center;
    margin-top: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #333;
    font-size: 16px;
}

.works-list img {
    width: 100%;
    display: block;
    transition: 0.3s;
}

.more {
    text-align: center;
    margin-top: 40px;
}

.more a {
    display: inline-block;
    font-size: 22px;
    padding: 12px 40px;
    background: #333;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.more a:hover {
    background: #777;
    transform: translateY(-6px);
}

.contact1 {
    font-size: 20px;
}

footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 60px 0;
    margin-top: 100px;
}

footer img {
    width: 400px;
    margin-bottom: 30px;
}