/* Global styles */
* {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f4f3f3;
    height: 100dvh;
}

/* Navigation */
nav {
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ece8e8;
    padding: 10px 30px;
}

.logo {
    font-size: 30px;
    font-weight: 500;

    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;
}


.logo img {
    height: 50px;
    width: 50px;
}

/* Toolbar */
.toolbar {
    background-color: white;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    gap: 40px;
}

/* Frame */
.frame {
    width: 100%;
    height: 100vh;
    background-color: #f4f3f3;
    display: grid;
    justify-content: center;
}

/* Grid */
.grid {
    margin: 40px;
    display: flex;
    flex-wrap: wrap;
    width: 450px;
    height: 450px;
    background-color: white;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}

/* Button */
button {
    background-color: white;
    border: 0px;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
    padding: 5px 12px 5px;
    border-radius: 5px;
    color: rgb(76, 71, 71);
    font-size: 15px;
    font-weight: 300;
    transition: all 0.1s ease-in-out;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
}
