/*
 Theme Name: Uchi Chef
 Theme URI: https://askwhite.jp/
 Author: Daishi Sugawara
 Author URI: https://askwhite.jp/
 Description: Uchi Chefメインテーマ
 Version: 1.0
 */

body {
    font-family: "Zen Kurenaido", sans-serif;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

a {
    border: none;
    text-decoration: none;
    color: gray;
}

.bg {
    animation: fadein 3s forwards;
}

@keyframes fadein {
    0% {opacity: 0}
    100% {opacity: 1}
}

.contaier {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tile_container {
    width: 90%;
    height: auto;
    text-align: center;
    margin: auto;
    border-bottom: gray 1px solid;
}

.site_title {
    font-size: 2rem;
}

.cate_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
    width: 30vw;
}

.cate {
    color: black;
    font-family: "Zen Kurenaido", sans-serif;
    border: gray 1px solid;
    text-align: center;
    margin: 3vh;
    padding: 1rem;
    width: 20rem;
}

.cate:hover{
    background-color: rgb(177, 224, 243);
}



