* {
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto Slab", serif;
}
.app_navbar {
    height: 8vh;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid lightblue;
    background-color: rgb(228, 239, 255);
}
#logo_img {
    height: 65px;
    width: 65px;
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 0 0 5px rgb(255, 255, 255, 0.7);
}

.app_generator {
    height: 77vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.app_generator-wrapper {
    height: 250px;
    width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 1rem;
    background-color: rgb(228, 239, 255);
}
.app_buttonbox-title {
    height: 200px;
    width: 100%;
    padding: 20px;
    border-radius: 1rem;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.app_buttonbox-item {
    width: 80%;
    height: 50px;
    margin: 5px;
    border-radius: 0.85rem;
    display: flex;
    justify-self: center;
    justify-content: space-evenly;
    align-items: center;
    text-align: start;
    font-size: 0.85rem;
    color: rgb(47, 47, 47);
    background-color: rgb(238, 253, 255);
}

button {
    padding: 7px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid rgb(39, 38, 72);
    border-radius: 10px;
    background-color: rgb(228, 239, 255);
}
.app_footer {
    height: 15vh;
    padding: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: rgb(228, 239, 255);
    border-top: 1px solid lightblue;
}
.app_footer h3 {
    margin-top: 10px;
    color: rgb(0, 136, 255);
}
