html{
    font-size: 62,5%;
    box-sizing: border-box;
}

body{
    background: black;
    margin: 0;
    overflow: hidden;
}

.hero-container{
    overflow: hidden;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    background: rgb(0,0,0);
    background: linear-gradient(149deg, rgba(0,0,0,1) -250%, rgba(68,68,68,1) 500%);

}



.text-container{
    position: fixed;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
}

.text-container h1{
    text-transform: uppercase;
}

.profile-img{
    width:70px;
    background-color: black;
    border: 5px solid white;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.253) 0 0 50px 0px;

}

.button-link{
    text-decoration: none;
    color: black;
    background-color: white;
    margin: 10px 0;
    padding: 10px 0;
    width: 70%;
    text-align: center;
    border: 2px solid black;
    box-shadow: rgba(0, 0, 0, 0.253) 0 0 20px 0px;
    border-radius: 10px;
    font-weight: 600;
    max-width:300px;

}


