@import '/styles/_variables.css';

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

aside {
    background-color: var(--light-secondary-color);
    min-height: 100%;
    width: 200px;
    padding: .5rem;
}

aside h2 {
    font-size: 20px;
}

aside p {
    height: 70px;
    border-bottom: 2px solid rgb(25, 25, 25);
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    background-color: rgb(150, 17, 17);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    font-weight: 600;
}

main.active {
    background-color: rgb(17, 150, 83);
}

aside button {
    border: none;
    background-color: var(--primary-color);
    font-weight: 500;
    font-size: 18px;
    padding: .4rem .4rem;
    color: white;
    border-radius: 10px;
    cursor: pointer;
}

aside button:hover {
    opacity: .8;
}