@import url('https://fonts.googleapis.com/css2?family=Dongle&display=swap');
*{
    margin: 0;
    padding: 0;
}

/** information of homepage**/
.welcome-text {
    position: absolute;
    width: 600px;
    height: 300px;
    margin: 20% 30%; 
    text-align: center; 
}
.welcome-text h1{
    font-size: 70px;
    font-family: Georgia,sans-serif;
    text-align: center; 
    color:#fff; 
    text-transform: uppercase;
    padding-bottom: 2%;
}
.welcome-text a{
     border: 1px solid #fff;  
    padding: 10px 25px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 25px;
    font-family: 'Dongle',sans-serif;
    margin-top: 20px;
    display: inline-block;
    color: #fff;
    transition: .5s;
}
.welcome-text a:hover{
    background: #fff;
    color: #333; 
    transform: scale(1.05);
}
