@import url("https://fonts.googleapis.com/css?family=Open+Sans:600, 300");
*, *::after, *::before {
    outline: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100vw;
    height: 100vh;
}
@font-face {
    font-family: 'extrabold';
    src: url("./public/fonts/SVN-Outfit-Regular.ttf");
}
.home_page{
    width: 100%;
    height: 100vh;
    /* background: url(./images/bg.jpg); */
    /* background-repeat: no-repeat;
    background-size: 100% 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Open sans', sans-serif;
    /* Container should have relative position */
    background: url(./public/images/background.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%; 
    flex-direction: column;
}
.home_page .gif_image{
    width: 500px;
    height: 300px;
    position: relative;
}
.home_page .gif_image .img{
    width: 100%;
    height: 100%;
}
.btn_row{
    width: 500px;
    height: 40px;
    display: flex;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;

}
.btn_row .btn_down{
    width: 90%;
    height: 100%;
    background-color: #546ef0;
    padding: 15px 20px;
    border: 2px solid #fff;
    color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    font-family: 'extrabold';
    cursor: pointer;
    

}

@media only screen and (max-width: 500px) {
    .home_page{
        background-size: auto 100%;
    }
    .home_page .gif_image{
        width: 90%;
        height: 200px;
    }
    .btn_row{
        width: 500px;
        width: 90%;
        padding: 10px 20px;
        font-size: 14px;
        margin-top: 2px;

        
    
    }
    .btn_row .btn_down{
        font-size: 15px;
        
    
    }
  }
  