* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;

  color: #000;
}
html,
body {
  width: 100%;
  height: 100%;
}
 body>a{
    text-decoration: none;
    position: absolute;
    bottom: 5%;
    right: 5%;
    font-size: 20px;
    padding: 7px 15px;
background-color: #000;
    color: #fff;
    transition: all linear 0.3s;
    border-top-left-radius: 10px; 
    border-top-right-radius: 10px; 
    border-bottom-right-radius: 10px;    


    
}
body>a:hover{
    color: #000;
    background-color: #b6b4b4;

}
.resume{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 25px;
    font-weight: 700;
    position: relative;
    
}
.resume h1{
    font-size: 70px;
    margin-bottom: 5vh;
}
.btn button{
    font-size: 15px;
    padding: 7px 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin: 1vw;

    background-color: #000;
    color: #fff;
    transition: all linear 0.3s;
}
.btn button:hover{
    color: #000;
    background-color: #b6b4b4;
}