.header{
    height: 86px;
    width:100%;
    min-width:200px;
    display:flex;
    background-color:#f5e08f; 
    border-bottom-width:10px;
    border-bottom-style:solid;
    border-bottom-color:#e3d085;           
}

.credits{
    padding-left:10px;
}


body{
    margin:0;  
}

.rightSec{
    display:flex;
    flex-shrink: 0;
    width:150px;
    padding-right:30px;
    justify-content: space-between;
    align-items:center;
    font-family:Gaegu;
    font-size:19px;
}

a{
    text-decoration: none;
    color:black;
}

.run,.cross,.logo{
    cursor:pointer;
    
}

.run,.cross{
    transition:.15s;
}

a:hover,.cross:hover{
    color:rgb(254, 249, 249);
}


.logo{
    width:70px;
    height:70px;
    transition: .5s;

}

.logo:hover{
    width:80px;
    height:80px;
}

.leftSec{
    display:flex;
    align-items: center;
    margin-left:20px;
    margin-right:25px;
}


.aboutBox{
    width:fit-content;
    height: fit-content;
    line-height: 35px;
    background: #f5e08f;
    border: none;
    padding-left:20px;padding-right:20px;padding-top:20px;
    margin-bottom: 20px;
    border-radius:5px;
}

.name{
    margin-top:50px;
    padding-left:30px;
}

.bottom{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink:0px; 
    font-family: gaegu;
    margin-top:50px;
    margin-left:120px;
    margin-right:120px;
    font-size:20px;

}

.title{
    font-size: 40px;
    padding-bottom:30px;
}

@media only screen and (max-width:600px) {

    .header{
        width:100%;    
    }

    .rightSec{
        display:flex;
        transition:.3s;
        justify-content: space-between;
        width:185px;
        flex-shrink: 0;
        padding-right:20px;
        align-items:center;
        font-family:Gaegu;
        font-size:15px;
    }

    .bottom{
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-shrink:0px; 
        font-family: gaegu;
        margin-top:50px;
        margin-left:40px;
        margin-right:40px;
        font-size:20px;
    
    }

    .title{
       font-size:29.6px; 
    }



}