@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');

body {
    font-family: 'Noto Sans', sans-serif;
    background-color: black;
    color: white;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.unplay_click_name{
    text-align: center;
}
.unplay_click_name h1{
    font-size: 40px;
    margin: 0;
    padding: 0;
}
.unplay_click_name p{
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.get_into_store{
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

main{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

footer{
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: gray;
}