* {
    box-sizing: border-box;
    margin: 0;
   
}

body {
     background-color: #23252C;
}

.body {
   display: flex;
   justify-content: center;
   align-items: center;
   height: 100vh;
   font-family: 'Inter', sans-serif;
}

.body .box {
     background-color: #1A1B21;
     width: 300px;
     border-radius: 10px 10px 10px 10px; 
     }

.header {
    background-color: #1A1B21;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
    border-radius: 10px 10px 0px 0px;
}

.header img {
    width: 300px;
    align-self: center;
    border-radius: 10px 10px 0px 0px;
}

.header h1 {
    color: #fff; 
    font-size: 25px;
    margin-top: 25px;
    margin-bottom: 0px;
    font-weight: 700;
}

.header h3 {
    color: #F3BF99; 
    font-size: 12.8px;
    margin-top: 5px;
    margin-bottom: 0px;
    font-weight: 400;
}

.header p {
    color: #F5F5F5; 
    font-size: 10.24px;
    margin-top: 7px;
    margin-bottom: 0px;
    font-weight: 400;
}


.btn {
  
  border: none; 
  color: white; 
  padding: 11px 0px; 
  cursor: pointer; 
  margin: 7px;
}

.btn .github {
    background-color: #fff;
    font-size: 14px;
    border-radius: 6px;
    color: #374151;
    width: 115px;
    transition: all .5s ease;
}

.btn .github:hover {
    background-color:  #F3BF99;
    color: #fff;   
}

.btn .github i {
    padding-right: 3px;
}

.btn .linkedin {
    background-color: #5093E2;
    font-size: 14px;
     border-radius: 6px;
     width: 115px;
     transition: all .5s ease;
}

.btn .linkedin:hover {
    background-color:  #F3BF99;
    color: #161619;   
}

.btn .linkedin .i:hover {
    background-color:  #F3BF99;
    color: #161619;   
}

.btn .linkedin i {
    padding-right: 3px;
}

.about {
    background-color: #1A1B21;
    color: #fff; 
     display: flex;
    flex-direction: column;
    align-items: center;
  
}

.about .body {
    display: inline-block;
}

.about h2 {
    font-size: 16px;
  font-weight: 700;
}

.about p {
    margin-top: 6px;
    font-size: 10.24px;
    width: 235px;
    line-height: 160%;
    font-weight: 400;
}

.interests {
    margin-top: 20px;
    background-color: #1A1B21;
    color: #fff; 
     display: flex;
    flex-direction: column;
    align-items: center;
  border-radius: 0 0 10px 10px;
}

.interests .body {
    display: inline-block;
    border-radius: 0 0 10px 10px;
}

.interests h2 {
    font-size: 16px;
  
}

.interests p {
    margin-top: 6px;
    font-size: 10.24px;
    width: 235px;
    line-height: 160%;
    font-weight: 400;
    margin-bottom: 30px;
}

.footer {
    background-color: #161619;
    margin: 0;
    display: flex;
    justify-content: center;
    border-radius: 0 0 10px 10px;
}

.footer i {
    color: #918E9B;
    font-size: 25px;
    margin: 10px;
    transition: all .5s ease;
}

a {
    text-decoration: none;
}

i:hover {
    color: #fff;
}
