@charset "utf-8";
body {
background: #fff;
color: black;
font-family: raleway,sans-serif;
font-size: 13px;
letter-spacing: 2px;
}
img {
border:0;
}
.profile-picture {
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 10%;
margin-bottom: 40px;
height: auto;
max-width: 200px;
}
.profile-name {
text-align: center;
padding: 30px;
}
.links {
text-align: center;
margin-top: 15px;
padding: 15px;
border: 1px solid black;
border-width: 2px;
max-width: 250px;
display: block;
margin-left: auto;
margin-right: auto;
border-radius: 25px;
}
a {
text-decoration: none;
color: black;
transition: color 1s;
}
.bottom-text {
text-align: center;
margin-top: 40px;
font-size: 13px;
font-weight: bold;
}
a:hover {
color: #DB642C;
background: #000;
}

 /* Dropdown Button */
.dropbtn {
    /*background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;*/
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: #000;
	color: #DB642C;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    /*position: absolute;*/
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	margin-left: auto;
	margin-right: auto;
	max-width: 250px;
	text-align:center;
	margin-top:-1px;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
	transition: color 1s;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1;color: #DB642C;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}