*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    width: 100%;
    height: 100%;
    background-color: #000;
    color: #fff;
}
body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-image: url(okkkkk.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
#icon{
    width: 300px;
 
    height: 300px;
}
#text{
    color: #fff;
    font-family:poppins ;
    text-transform: uppercase;
    
}
#svg{
    width: 230px;
    display: none;

}
#btn{
    width: 30%;
    font-size: 20px;
    font-family: 'Courier New', Courier, monospace;
    color: #fff;
    background: linear-gradient(30deg , red , blue , pink );

}
#btn :active{
    scale: 2;
} 
#logo{
    width: 200px;
    border-radius: 50px;
}


