@charset "utf-8";

html {
    height: 100%;
}

body {
    height: 100%;
    background-color: #202428;
    color: #fcfcfc;
    font-family: 'Century Gothic';
}

ul {
    padding: 0;
}

header{
    height: 100%;
    margin-bottom: 10%;
}

.header_title {
    text-align: center;
    font-size: 60px;
    padding-top: 15%;
    height: 100%;
}

li a {
    color: #fcfcfc;
}

.nav_item ul {
    text-align: center;
    display: flex;
    justify-content: space-evenly;
}

#work,#profile,#top {
    display: inline-block;
    transition: .3s;
    -webkit-transform: scale(1);
    transform: scale(1);
}

#work:hover,#profile:hover,#top:hover {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}
    

.nav_item ul li {
    font-size: 50px;
}

ul li a {
    text-decoration: none;
}

.link_text a{
    color: white;
}

section {
    padding-left: 10%;
    padding-right: 10%;
}

.main_works_contents img {
    border-style: solid;
    border-width: 4px;
    background-color: rgb(7, 7, 12);
    border-color: #d9d9d9 #a1a1a1 #666666 #ededed;
    cursor: pointer;
    transition-duration: 0.3s;
}

.main_works_contents img:hover {
    opacity: 0.6;
    transition-duration: 0.3s;
}

h2 {
    font-size: 60px;
    margin-left: 10%;
    text-align: left;
}

.border {
    text-align: center;
    margin: 5% 10%;
    border-bottom: 1px solid;
    border-color: aliceblue;
}

footer h2 {
    margin-bottom: 50px;
}

.main_works_contents {
    display: flex;
    justify-content: space-evenly;
    /* margin-bottom: 40px; */
}

.contents_text {
    text-align: left;
    padding-top: 2%;
}

h3 {
    font-size: 35px;
    margin-top: 10px;
    margin-bottom: 40px;
}

#profile_title {
    margin-top: 15%;
}

.profile_text {
    text-align: left;
    display: flex;
}

.profile_text img {
    border-radius: 50%;
    margin-left: 10%;
    margin-right: 10%;
}

.link {
    padding-top: 5%;
}

footer {
    margin: auto;
    text-align: center;
}