*{
    box-sizing: border-box;
    font-family: Arial;
    scroll-behavior: smooth;
}

:root {
    --orange-color: #dca45b;
    --blue-color: #5784a4;
}

iframe {
    width: 100%;
    border: none;
}

div.header-section {
    background-color: var(--orange-color) ;
    text-align: center;
    border-radius: 5px;
}

img.header-image {
    height: 200px;
    margin: 20px auto 0 auto;
    display: block;
}

a.header-email {
    color: white;
    text-decoration: none;
    display: block;
    text-align: left;
    padding: 20px 20px;
    
    
}

a.header-email:hover {
    color: var(--blue-color)
}

h1.header-name {
    color:white;
    text-align: center;
    display: inline-block;
}

div.separator {
    height: 5px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

div.blue-separator {
    background-color: var(--blue-color);
}
div.white-separator {
    background-color: white;
}
div.orange-separator {
    background-color: var(--orange-color);
}

h2.header-subtitle {
    color:white;
    padding-bottom: 30px;
}

div.about-section {
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
    
}

h1.about-title {
    color: var(--blue-color)
}

.about-me {
    text-align: center;
    color: var(--blue-color);
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
   
}



.skill-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
}

p.other-interests {
    color: var(--blue-color);
    padding-top: 20px;
}

img.body-image {
    height: 150px;
    position: relative;
    margin-top: 20px;
    margin-bottom: -26px;
    margin-right: 80px;
    left: 30%;
}

div.links-section {
    text-align: center;
    background-color: var(--blue-color);
    padding-bottom: 20px;
    border-radius: 5px;
}

h1.links-title {
    color: white;
    padding-top: 20px;
}

div.links-section a {
    color: white;
    font-size: 20px;
}

div.contact-section {
    background-color: white;

}


div.contact-frame {
    position: relative;
    background-color: var(--orange-color);
    text-align: center;
    margin:0 0 0 0 ;
    border: 3px solid var(--blue-color);

  
}

img.frame-img {
    width: 100px;
}

table.contact-frame {
    text-align: center;
    width: 100%;
    color: white;
}

table.contact-frame a {
    text-decoration: none;
    color: white;
    border: 3px solid white;
    padding: 6px;
    font-size: 18px;
    white-space: nowrap;
}

table.contact-frame a:hover {
    color: var(--blue-color);
    border: 3px solid var(--blue-color);

}

a.navigation-link {
    color: var(--blue-color);
    text-decoration: none;
}

.tooltip {
    position: relative;
    padding: 5px;

}

.tooltip::before {
    left: 0;
    bottom: 100%;
    position: absolute;
    content: attr(tooltip);
    background-color: var(--orange-color);
    border-radius: 5px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 200ms ease-in-out;
    padding: 2px 5px;
    width: max-content;

}

.tooltip:hover::before,
.tooltip:focus::before  {
    
    transform: scaleX(1);
}

.other-interests {
    color: var(--blue-color);
}

.other-skills-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    max-width: 500px;
    margin: auto;
}

.tooltip-bottom {
    position: relative;

}

.tooltip-bottom::after {
    color: white;
    left: 0;
    top: 100%;
    position: absolute;
    content: attr(tooltip);
    background-color: var(--blue-color);
    border-radius: 5px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 200ms ease-in-out;
    padding: 2px 5px;

}

.tooltip-bottom:hover::after,
.tooltip-bottom:focus::after  {
    
    transform: scaleX(1);
}