.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: whitesmoke;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}
html{
    scroll-padding-top: 70px;
}
body{
    padding-top: 20px;
}
/*===========이곳은 프로젝트 스타일입니다================*/
.projects {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 100px;
    background-color:whitesmoke;
}

.projects .myprojects {
    margin-top:0;
    font-size: 40px;
}

.projects .myprojects ul li {
    font-size: 20px;
}

.video{
    margin-left: auto;
}

.githubbtn{
    display:block;
    margin:0 auto;
    padding: 20px 40px;
    background: #e40d0d;
    color: #08f800;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 40px;
}
/*======================================================*/
.menu {
    display: flex;
    margin-left:auto;
}

.menu a {
    margin-right: 30px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.contact {
    padding-right: 20px;
}

.banner{
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.banner_img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    opacity: 0.25;
}

.banner_text h1{
    position: absolute;
    top: 15%;
    left: 25px;
    color: black;
    font-size: 50px;
}

.banner_text p {
    position: absolute;
    top: 55%;
    left: 25px;
    color: black;
    font-size: 24px;
}

.button{
    position: absolute;
    top: 70%;
    left: 25px;
    padding: 10px 20px;
    background: #4F46E5;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size:20px;
}

.section{
    margin: 100px 25px;
}

.about{
    width: fit-content;
    display: flex;
    align-items: center;
    gap:50px;
    margin: 0 auto;
}
.profilepic{
    border-radius: 50%;
    border: 4px solid lightskyblue;
}

.about_txt h1{
    font-size: 36px;
    margin: 0 0 10px 0;
}
.about_txt p{
    margin: 5px;
    font-size:20px;
    font-family: sans-serif;
}

.skills-bg{
    width: 50%;
    background-color: #f0f0f0;
    padding: 20px 0 20px 0;
    border-radius: 20px;
    margin-top: 30px;
    padding-left: 10px;
}

.language{
    font-size: 20px;
    margin-left: 1%;
}

.skill-bar{
    border-radius: 20px;
    margin: 10px 0 20px 0;
    position: relative;
    font-size: 20px;
    padding-left: 5%;
}

#python{
    width: 80%;
    background-color: #e40d0d;
}

#C{
    width: 60%;
    background-color: #0de42a;
}

#Java{
    width: 40%;
    background-color: #0d22e4;
}

#htmlcss{
    width: 40%;
    background-color: #0d22e4;
}

.hobbies ul{
    list-style-type: square;
    font-size: 20px;
}
.hobbies p{
    margin: 5px 0 15px 20px;
    font-size:16px;
}

