@font-face {
    font-family: LilGrotesk;
    src: url(/resources/LilGrotesk-Regular.otf);
}

body {
    margin: 0;
    overflow: hidden;
    font-family: LilGrotesk;
}

.header {
    height: 50px;
    background-color: rgb(80, 80, 80);
    display: flex;
    align-items: center;
    justify-content: baseline;
    font-size: 20px;
}

.header__avatar {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    margin: 0px 10px;
}

.header__username {
    color: white;
}

.header__env_button {
    justify-self: flex-end;
    margin-left: auto;
    margin-right: 10px;
    height: 30px;
    padding: 0 10px;
    background-color: rgb(100, 200, 100);
    color: black;
}

.header__env_button:hover {
    background-color: rgb(80, 180, 80);
    cursor: pointer;
}

.header__env_button:active {
    background-color: rgb(60, 160, 60);
    cursor: pointer;
}

.home__button {
    margin: 30px 10px;
    padding: 10px;
    background-color: rgb(100, 200, 100);
    text-align: center;
    font-size: 50px;
}

.home__button:hover {
    background-color: rgb(80, 180, 80);
    cursor: pointer;
}

.home__button:active {
    background-color: rgb(60, 160, 60);
    cursor: pointer;
}
