*,
*::before,
*::after {
box-sizing: border-box;
}

*{
    margin:0;
    padding: 0;
}

body{
    font-size: 1.6rem;
    min-height: 100vh;
    background: linear-gradient(to bottom right, #c9a066, #8b5e3c, #4b2e2b);
}

.first-half{
    padding: 2rem; 
    height:80vh;
    background-size:cover;
    display:flex;
    align-items: center; 
    position:relative; 
    justify-content: space-evenly;
}

a{
    color:white!important;
}

a:visited{
    color: gray;
}

a:hover{
    color: goldenrod;
}

.profile-card{
    display: flex;
    flex-direction: column;
    color:whitesmoke;
    width: 30rem;
    height: 40rem;
    padding: 0.25rem;
    border: 0.5rem bisque solid;
    border-radius: 0.25rem;
    text-align: left;
    justify-content: end;
    background-image: url("kxifi.jpg");
    background-size: cover;
}

.profile-card:hover {
    transform: translateY(-5px) rotate(-1deg);
    box-shadow: 
        inset 0 1px 3px rgba(255, 255, 255, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.15),
        0 15px 45px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
}

.name{
    font-size: x-large;
    font-family: serif;
}

.navbar{
    position: sticky;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 6rem;
    align-items: end;
    padding: 4rem;
    line-height: 2rem;
}

ul.nav-list{
    list-style: none;
}

.verified-twitter {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.4rem;
  position: inherit;
}

.username{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.item-bio{
    line-height: 2rem;
}

ul.icons{
    display: flex;
    flex-direction: column;
    list-style: none;
    height: 4.5rem;
    justify-content: space-around;
}
