
  @import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Collegiate+One:ital@1&family=Mooli&family=Poppins:ital,wght@0,200;0,300;0,400;1,300;1,400&family=Protest+Riot&family=Roboto:wght@400;500&family=Ubuntu:ital,wght@0,300;0,400;1,300&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Alumni Sans Collegiate One', sans-serif;
font-family: 'Mooli', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Protest Riot', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Ubuntu', sans-serif;
}
body{

    
}
.body{
    display: flex;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000;
    background-image: url(./Screenshot\ 2024-02-03\ 202220.png);
    background-repeat: no-repeat, repeat;
    background-size: cover;
    
}
.body h1{
    box-shadow: 20px grey;
    text-align: center;
}
.body h2{
    text-align: center;
}

button{
    width: 200px;
    height: 40px;
    font-weight: 700;
    font-size: 16px;
    margin: 20px;
    border: none;
    border-radius: 10px;
}
button a{
    text-decoration: none;
    color: black;
}
.bos{
    width: 100%;
    margin-left: -0px;
    background-color: blue;
    color: #fff;
    border: none;
    border-radius: 10px;
}

@media only screen and (max-width: 600px) {
    h1{
        font-size: 20px;
        text-align: center;
    }
    h2{
        font-size: 18px ;
        text-align: center;
    }
    body{
        display: grid;
        grid-template-columns: auto;
    }
  }