@import "reset.css";
@import "../components/variable.css";
@import "../components/user.css";
@import "../components/tweet.css";
@import "../components/hover.css";

body{
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: 300px 50px 1fr 200px;
    grid-template-rows: repeat(5, 1fr);
}
.title{
    grid-column: 1/2;
    grid-row: 1/2;
    background-color: var(--title-color);
    color: white;
    font-size: 40px;
    font-weight: 600;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.category{
    grid-column: 1/2;
    grid-row: 2/-1;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    font-size: 30px;
    font-weight: 600;
}
.category__btn{
    display: flex;
    align-items: center;
    padding: 10px;
}
.category__btn:nth-child(odd){
    background-color: white;
    color: var(--title-color);
}
.category__btn:nth-child(even){
    background-color:var(--title-color);
    color: white;
}
.category__btn i{
    margin-right: 10px;
}
.current-page{
    grid-column: 2/3;
    grid-row: 1/2;
    font-size: 20px;
    color: var(--title-color);
    display: flex;
    justify-content: center;
    align-items: center;
}