html {
    scroll-behavior: smooth;
}

body {
    background-color: #413e3e;
    color: #f0f8ff;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}


header {
    margin-top: 60px;
}

.header__navigation{
    font-size: 2rem;
}

a {
    text-decoration: none;
    color: aliceblue;
    padding: 0 30px 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

ul{
    list-style: none;
}

.container {    
    margin: 30px 10% 0;
}

.header__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main__wrapper {
    padding-top: 30px;
    margin: 0 auto;
}

.profile{
    height: 600px;
    width: 100%;
    
}

.profile__bg {
    height: 100%;
    background: linear-gradient(#8267a8, #4e4eca) ;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.profile__img {
    width: 50%;
    height: 50%;
    margin-left:100px ;
}

.profile__name {
    font-size: 1.5rem;
    position: flex;
    top: 35%;
    right: 25%;
}

.section {
    margin-top: 100px;
    padding: 0 40px 15px 40px;
    font-size: 1.5rem;
}

.summary {
    background-color: #6c6c7f;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 80px;
}

.title {
    margin-bottom:40px ;
}

.summary__info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.skills {
    background-color: rgb(41, 58, 49);
    border-radius: 24px;
}

.skills__title {
    margin-bottom: 40px;
    font-size: 1.5rem;
}

.skills__list {
    display: flex;
    flex-direction: column;
}

.skills__item {
    display: flex;
    align-items: center;
    min-height: 32px;
    padding-left: 60px; 
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 32px;
}

.skills__git {
    background-image: url(assets/Git__asset-SNS.png);
}

.skills__html {
    background-image: url(assets/html.png);
}

.skills__css {
    background-image: url(assets/CSS.png);
}

.code {
    background-color: #40839f;
    border-radius: 24px;
}

.languages {
    background-color: #6c6c7f;
    border-radius: 24px;
}

.footer {
    display: block;
    unicode-bidi: isolate;
}

.footer__container {
    background-color: white;
    border-radius: 24px;
}

.footer__links {
    margin: 50px 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author {
    margin: 20px 10px 20px;
    text-align: right;
    color: black;
}
