@charset "utf-8";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}
.title{
    width: 100%;
    height: 100%;
    display: flex;
    text-align: center;
    align-items: center;
}
.title h1{
    font-size: 30px;
    font-weight: lighter;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
@media(max-width:450px){
    .title h1{
        font-size: 20px;
    }
}