@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&family=Poiret+One&family=Seymour+One&display=swap');

*{margin: 0;padding: 0;line-height: 1;box-sizing: border-box;}
body {
    font-family: "M PLUS Rounded 1c", sans-serif;
    color: #555;
    line-height: 2;
    letter-spacing: 0.12em;
}
li {
    list-style-type: none;
}
a {
    text-decoration: none;
    color: #555;
}
img{
    max-width: 100%;
    vertical-align: bottom;
}
#bg{
    display: none;
}
.container{  
    position: relative;
    max-width: 800px;
    inset:0;
    margin: auto;
    padding: 50px;
}
.logo{
    position: fixed;
    top:10px;
    left: 10px;
    width: 150px;
    z-index: 10;
}
.content{  
    border-top: 1px solid #555;
    margin-bottom: 100px;
}
.about-body{
    color: #ccc;
    background-color: #000;
}
.my-pic{
    position: absolute;
    top: -100px;
    right: 0;
    z-index: -1;
    width: 50%;
    opacity: 50%;
}
h1{
    font-size: 30px;
    text-align: center;
    margin: 100px 0;
    >img{
        width: 30px;
        padding-left: 10px;
    }
    &:hover{
        opacity: 70%;
    }
}
.name{
    font-family: "Seymour One", sans-serif;
    font-size: 100px;
    &:hover{
        opacity: 100%;
    }
    
}
h2{
    font-size: 26px;
    margin: 30px;
    text-align: center;
    line-height: 1.5;
    >span{
        font-size: 18px;
    }
}
h3{
    font-size: 24px;
    margin: 0 10px 30px;
    >span{
        font-size: 14px;
        padding-left: 20px;
    }
}
h4{
    font-size: 18px;
    margin-bottom: 10px;
    &::before{
        content: "";
        display: inline-block;
        width: 5px;
        height: 30px;
        background-color: #555;
        border-radius: 5px ;
        margin-right: 15px;
        vertical-align: middle;
    }
    >span{
        font-size: 12px;
        padding-left: 10px;
    }
}
.paragraph1{
    margin: 50px 0 80px;
    p{
        line-height: 1.8;
    }
}
.paragraph2{
    margin-bottom: 50px;
    >p{
        line-height: 1.8;
        padding:0 0 30px 30px;
        font-size: 14px;
    }
}
.close{
    cursor: pointer;
    max-width: 200px;
    margin: 0 auto 0 0;
    text-align: center;
    padding: 10px;
    color: #555;
    font-family: "Poiret One", sans-serif;
    font-size: 30px;
    border: 2px solid #555;
    border-radius: 30px;
    box-shadow: 1px 1px 10px 1px #ddd;
    &::before{
        content: "";
        display: inline-block;
        width: 12px;
        height: 12px;
        border-top: 3px solid #555;
        border-left: 3px solid #555;
        rotate: -45deg;
        margin-right: 20px;
        vertical-align: 2px; 
    }
    &:hover{
        opacity: 70%;
    }
}
.comp{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    >li{
        width: 200px;
    }
}
@media (max-width:768px){
    .my-pic{
        top: -100px;
        right: 0;
        z-index: -1;
        width: 90%;
    }
    .name{
        font-size: 40px;
    }
    .logo{
        width: 100px;
    }
    h1{
        font-size: 20px;
        margin: 80px 0;
    }
    .close{
        width: 150px;
        font-size: 20px;
        &::before{
            width: 8px;
            height: 8px;
        }
    }
    .paragraph1{
        margin: 50px 0 80px;
        p{
            font-size: 14px;
            line-height: 1.8;
        }
    }
    h4{
        font-size: 16px;
    }
}

