html {
    margin: 0;
    padding: 0;
    scroll-behavior: auto !important;
}

.hero {
    background-color: rgb(34, 34, 34);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    grid-area: hero;

    box-sizing: border-box;
    display: grid;
    grid-template-areas: "profile specifics";
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.hero .profile-container {
    align-items: center;
    justify-content: center;
    grid-area: profile;
    padding: 33%;
}

.hero .profile-container img {
    display: block;
    width: 95%;
    margin: 0 auto;
    border-radius: 100%;
    box-shadow: 0 0 1rem rgb(180, 180, 180);

    transition: ease-in-out 0.2s;
}

.hero .profile-container img:hover {
    width: 100%;
}

.hero .profile-container h1 {
    font-size: 1.3rem;
    text-align: center;
    margin: 3rem auto;
}

.hero .profile-container p {
    text-align: center;
}

.hero .specifics-container {
    align-items: center;
    justify-content: center;

    grid-area: specifics;
}

.hero .specifics-container h1 {
    text-align: center;
}