@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@700&display=swap');
:root{
    --firstcolor: rgb(255, 123, 0);
    --secondcolor: rgb(255, 173, 97);
    --textcolor: rgb(255, 255, 255);
}
*{
    margin: 0;
    padding: 0;
}
nav{
    display: flex;
    background-color: var(--firstcolor);
    height: 60px;
}

nav h1{
    margin-left: 1vw;
    font-family: "Baloo Bhai 2", serif;
    font-size: 30px;
    text-align: left;
    justify-content: center;
    justify-items: center;
}
nav ul li a{
    color: var(--textcolor);
    text-decoration: none;
}
nav ul li{
    display: inline-flex;
    padding: 3px;
}
nav ul{
    margin-left: 67vw;
    padding-top: 1vh;
}
main h2{
    margin-top: 10vh;
    text-align: center;
}
body{
    background-color: var(--secondcolor);
}
.parent {
    overflow: hidden;
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    transition: opacity 0.2s ease;
}
.card {
    color: white;
    text-align: center;
    font-family: "Baloo Bhai 2", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    position: relative;
    background-color: black;
    width: 400px;
    height: 200px;
    border-radius: 20px;

}
@property --angle{
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

h2{
    text-transform: capitalize;
    font-family: "Baloo Bhai 2", serif;
}



.card::before, .card::after {
    content: '';
    position: absolute;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    left: 50%;
    bottom: 50%;
    scale: 1.03;
    translate: -50% 50%;
    z-index: -1;
    background: conic-gradient(from var(--angle), rgb(255, 115, 0), rgb(192, 70, 0), red,rgb(255, 115, 0));
    animation: 3s spin linear infinite;
}
.card::after {
    filter: blur(90px);
}

.pheader{
    margin-left: 2rem;
    font-family: "Baloo Bhai 2", serif;
    text-transform: capitalize;
    display: block;
}

.center{
    display: none;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.copyip{
    text-transform: uppercase;   
}

@keyframes spin{
    from{
        --angle: 0deg
    }
    to{
        --angle:360deg
    }
}
h5{
    text-transform: capitalize;
}
button{
    color: var(--textcolor);
    cursor: pointer;
    background-color: var(--firstcolor);
    border: 3px solid var(--secondcolor);
    width: 150px;
    height: 50px;
    margin-top: 20px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    transition: transform 0.2s ease;
}
button::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    border-radius: 30px;
    z-index: -1;
    background: linear-gradient(9deg, rgb(255, 115, 0), rgb(192, 70, 0), red,rgb(255, 115, 0));
    opacity: 0;
    transition: opacity 0.2s ease;
}

button:hover::before{
    opacity: 100;
}
button:active{
    transform: scale(0.9);
}


