*{
	padding: 0;
	margin: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap');

html {
    font-size: 16px;
}

body{
    overflow: hidden;
}

.SuccessFrame {
    margin: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;

    display: grid;
    grid-template-columns: 100vw;
    grid-template-rows: 15vh 85vh; /* adds to 100vh */
}

.flex{
    display: flex;
    justify-content: center;
    align-items: center;

    /* border: 1px solid black; */
}

#top{
    height: 10vh;
    margin: 2.5vh 0;
    grid-row: 1;

    display: grid;
    grid-template-columns: 10vw 80vw 10vw;
    grid-template-rows: 10vh;
    justify-content: center;
    align-items: center;
}

.webCompany{
    height: inherit;
    width: auto;
    /* border: 1px solid black; */
    grid-column: 1;

    font-family: Inter;
    font-size: 1.875rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #000;

    display: flex;
    justify-content: center;
    align-items: center;
}

#Company_namelogo{
    position: absolute;
    margin-top: 2vh;
    top: 1.5vh;
    left: 4vw;

    width: 10vw;
    height: 15vh;
    background-size: 100%;
    background-image: url("../assets/logo.png");
    background-repeat: no-repeat;
}

#navigationPane{
    /* border: 1px solid black; */
    height: inherit;
    width: auto;
    grid-column: 2;

    justify-content: inherit;
    align-items: inherit;

    display: grid;
    grid-template-columns: 20vw 20vw 20vw;
    grid-template-rows: inherit;
    gap: 0 10vh;
}

.menu{
    font-family: Inter;
    font-size: 1.25rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #000;
}

#Menu_1 {
    grid-column: 1;
  }

#Menu_2 {
    grid-column: 2;
  }

#Menu_3 {
    grid-column: 3;
}

#profile{
    margin-top: 5vh;
    /* border: 1px solid black; */
    height: inherit;
    width: auto;
    grid-column: 3;

    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 7vh 3vh; 
}

.User-profile{grid-row: 1;}

#profilePic{
    width: 6vh;
    height: 6vh;

    border: 1px solid black;
    border-radius: 50%;

    background-color: #d9d9d9;
    background-image: url("../assets/Lara.png");
    background-size: 100%;
}

.heyPerson{
    grid-row: 2;
    font-family: Inter;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
}