*{
    font-family: 'Trebuchet MS';
}
main{
    margin:1rem;
    max-width: 46.875rem;
    background-color: gold;
    border-radius: 1.333rem;
    padding: 1rem;
    overflow: auto;
    position: relative;
    line-height: 2.777rem;
    
}

.name{
    background-color: darkgreen;
    border-radius: 0.333rem 0.333rem 0rem 0rem;
    width: 31rem;
}

h1{
    margin-top: 0rem;
    padding: 0rem 0.333rem;
    color: black;
    font-family: 'Trebuchet MS';
}

.image{
    width: 15rem;
    border-radius: 1.333rem;
    float: right;
    margin-left: 2rem;
    margin-top: 0;
    border-style: solid;
    border-color: darkgreen;
    border-width: 0.19rem;
    
}

.dropdown{
    position: relative;
}
.dropdown-content{
    display: none;
    position: absolute;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.icons{
    position: absolute;
    bottom: 0.5rem;
    left: 15rem;
}