html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}
.header {
    display:flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 0;
}

.header__left {
    margin-left: 20px;
    width:10%;
}

.header__right {
    margin-right: 20px;
    width:50%;
    display: flex;
    justify-content: flex-end;
}

.header__title {
    font-family: 'Courier New', Courier, monospace;
    border-radius: 5px;
    border-color: #777777;
    padding:10px 20px;
    text-align: center;
    background-color: #777777;
    font-size: 16px;
    font-weight: bold;
    color: #FFFF;
}

.header__nav {
    padding: 0;
    margin-left: 30px;
}

.header__nav-list {
    display: flex;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header__nav-list a {
    text-decoration: none;
    color: #777777;
    font-size: 14px;
}

.main {
    width: 100%;
    margin: 0;
    padding-top: 0;
}
.main__visual {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.main__visual h2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffff;
    font-size: 16px;
}

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

.about {
    width: 70%;
    margin: 10px auto;
}

.about h2 {
    text-align: center;
    margin: 20px auto;
}

.about__content {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

.about__image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.about__image-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.about__text h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.about__text p {
    margin: 0;
    font-size: 14px;
    color: #777;
}

.works_content {
    text-align: center;
    margin-bottom: 40px;
}

.works {
    width: 70%;
    margin: 10px auto;
}

.works h2 {
    text-align: center;
    margin: 10px auto;
}

.works__images {
    display: flex;
    gap: 20px;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    overflow: hidden;
}

.works__image {
    width: 400px;
}

.works__image-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.works__image-img:hover {
    transform: scale(1.05);
}

.message {
    width: 70%;
    margin: 10px auto;
    text-align: center;
}
.message h2 {
    text-align: center;
    margin: 10px auto;
}

.message__btn {
    display: inline-block;
    border-radius: 100px;
    border: none;
    padding: 10px 30px;
    background-color: #777777;
    color: #ffff;
    text-decoration: none;
}

.message__btn:hover {
    background-color: #666666;
}

.message__btn:active {
    background-color: #555555;
}

.footer {
    text-align: center;
    padding: 20px auto;
}

.footer p {
    color: #777777;
    font-size: 12px;
}