@import url('https://fonts.googleapis.com/css2?family=Victor+Mono:ital,wght@0,100..700;1,100..700&display=swap');

body{
    margin: 0;
    padding: 5px 22px;
    color: white;
    background-color: #111111;
    font-family: "Victor Mono", monospace;
}

.myPhoto{
    width: 190px;
    height: 190px;
    cursor: pointer;
    border-radius: 12%;
    display: flex;
    align-items: start;
    border: 5px solid rgba(27, 5, 150, 0.751);
    box-shadow: 1px 2px 5px blueviolet,-2px -3px 5px blueviolet;
    transition: box-shadow 1.5s ;
}

.myPhoto:hover{
    box-shadow: 3px 4px 5px rgb(135, 8, 253),-2px -3px 5px rgb(200, 156, 241);
}

.myName,h3{
    display: flex;
    align-items: start;
    letter-spacing: 1.5px;
}
.myName{
    font-size: 2.5rem;
}
.aboutMe{
    font-size: 1em;
    min-width: 10px;
}

.urhere{
    color: orangered;
}

.myLinks{
    /* margin-top: 1em; */
    margin-right: 5px;
    margin-left: 5px;
    padding: 9.5px;
    border: none;
    border-radius: 3px;
    margin-bottom: 11.3px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.87em;
    color: black;
    background-color: white;
    cursor: pointer;
}


.collaborate-btn{
    font-size: 1em;
    color: black;
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    padding: 5px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

#email-icon{
    margin: 1em 1em;
    font-size: 1.2rem;
}

#copy-btn{
    padding: 5px;
    background-color: #1a1a1a;
    color: wheat;
    border-radius: 5px;
    cursor: pointer;
}