*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    background: linear-gradient(
    270deg,
    #ff6a00,
    #ee0979,
    #6a11cb,
    #2575fc
    );
    background-size: 200% 200%;
    animation:  gradientMove 30s ease infinite;
    display: flex;
    flex-direction: column;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

@keyframes gradientMove {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

main{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    width: 50vw;
    height: 60vh;
    padding: 12px;
    border-radius: 12px;
    border-width: 10px;
    border-color: #6167b1;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.329);

}

h1{
    position: absolute;
    top: 30px;
    color: white;
    font-size: 50px;
 /*   -webkit-text-stroke: 2px black; */
    
}

section{
    align-self:center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 90%;
}

.rowbtns{
    display: flex;
    flex-direction: row;
}

p{
    top:20px;
    left: calc(20%);
    margin: 40px;
    color: rgb(14, 14, 14);
    border-color: #000;
    text-indent: 2px;
}

.msg{
    
}

.msg p{
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}



h2{
    position: absolute;
    top: 0.8rem;
    margin-top: 12px;
    
}

hr{
    position: absolute;
    top: 10%;
    width: 100%;
    height: 0.2px;
    background-color: #ccc;
    margin: 40px 0;
}

.fw{
    transition: 0.5s ease;
    margin: 80px 40px 0px 40px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    position: relative;
    padding: 10px 10px;
    background: #446abb;
    border-radius: 6px;
    color: #ffffff;
    border: none;
    font-size: clamp(0.5rem, 3vw, 1.5rem);
    font-weight: 400;
    cursor:pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.fw:active{
    transition: 0.2s ease;
    background: #6990e6;
    border-radius: 6px;
    border: 3px solid #446abb;
    color: #ffffff;
    transform: scale(0.96);
}
.ps{
    transition: 0.5s ease;
    margin: 80px 40px 0px 40px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    position: relative;
    padding: 10px 10px;
    background: #446abb;
    border-radius: 6px;
    color: #ffffff;
    border: none;
    font-size: clamp(0.5rem, 3vw, 1.5rem);
    font-weight: 400;
    cursor:pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.ps:active{
    transition: 0.2s ease;
    background: #6990e6;
    border-radius: 6px;
    border: 3px solid #446abb;
    color: #ffffff;
    transform: scale(0.96);
}

.hb{
    position: relative;
    bottom: 12px;
}
.th{
}


/* Phones */

@media (max-width: 800px) {
body{
min-width: 100vw;
    background: linear-gradient(
    270deg,
    #ff6a00,
    #ee0979,
    #6a11cb,
    #2575fc
    );
    background-size: 200% 200%;
    animation:  gradientMove 30s ease infinite;
    display: flex;
    flex-direction: column;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

@keyframes gradientMove {
    0% {background-position: 0% 50%;}
    50% {background-position: 80% 50%;}
    100% {background-position: 0% 50%;}
}

    main{
        position: relative;
        background: none;
        box-shadow: none;
        width: 100%;
    }
p{
    color: white;
 }

    hr{
        width: 100%;
    }
    
    h2{
        color: white;
        font-size: calc(100%);
    }
    section{
        position: relative;
    }
    .msg{
        color: white;
        left: 10%;
        position: absolute;
        top: 22%;
        
        width: 100%;
    }

    .msg p {
        margin: 0;
        font-size: 0.8rem;
    }

    a{
        position: absolute;
        top: -40%;
        left: 5%;
    }
    a{
        position: absolute;
        top: -40%;
        right: 5%;
    }
    .hb{
        position: relative;
        bottom: 30px;
    }
    .th{
        margin: 0px;
        margin-top: 12px;
        padding: 2px;
    }
.rowbtns{
        display: flex;
        flex-direction: row
}
}