Skip to content
Snippets Groups Projects
Main.css 846 B
Newer Older
Jaeyong Lee's avatar
Jaeyong Lee committed
@font-face {
    font-family: 'JalnanGothic';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_231029@1.1/JalnanGothic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

Jaeyong Lee's avatar
Jaeyong Lee committed
.intro {
    /* position: fixed; */
Jaeyong Lee's avatar
Jaeyong Lee committed
    font-size: 30px;
    background-image: url("../introduction.png");
Jaeyong Lee's avatar
Jaeyong Lee committed
    width: 700px;
    height: 180px;
    /* display: flex; */
Jaeyong Lee's avatar
Jaeyong Lee committed
    justify-content: center;
    align-items: center;
    padding: 50px;
Jaeyong Lee's avatar
Jaeyong Lee committed
    /* flex-wrap: wrap; */
Jaeyong Lee's avatar
Jaeyong Lee committed
    
}
Jaeyong Lee's avatar
Jaeyong Lee committed
.intro p{
    font-size: 35px;
Jaeyong Lee's avatar
Jaeyong Lee committed
    color: white;
    font-family: "JalnanGothic";
    text-align: center;
    line-height: 1.5;
Jaeyong Lee's avatar
Jaeyong Lee committed
}


Button {
    width: 150px;
    height: 50px;
    font-size: 20px;
    font-family:Arial, Helvetica, sans-serif;
    transition: 
		transform .2s;
    
}

Button:hover{
    opacity: 0.7;
    transition: all 0.2s ease-out;
    
}