@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    padding: 1;
    margin: 1;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Poppins', sans-serif;
}

body{
    background-attachment: fixed;
    background-color: #3d003d;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23404' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%23505'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");
}

h1 {
    text-align: center;
    font-size: 64px;
    color: #0080ff;
    animation-name: sizing-text;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

h2{
    margin-top: -55px;
    text-align: center;
    font-size: 24px;
    color:white;
    animation-name: sizing-text;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

h3{
    color:#0080ff;
    font-size:24px;
    text-align: center;
    transition: color 1s ease;
    margin-bottom: 1px;
}

h4{
    color:rgb(255, 255, 255);
    font-size:20px;
    text-align: center;
    transition: color 1s ease;
}

h3:hover {
    color: #00c8d6;
    transition: color 1s ease;
}

p{
    text-align: center;
    color:white;
    font-size: 18px;
}

section {
    display: block;
}

.heading{
    position: relative;
    display: flex;
    flex-flow: column;
    height: 100vh;
    background-size: cover;
}

.heading content{
    align-items: center;
    text-align: center;
}

.logo {
    display: block;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -100px;
    animation-name: sizing;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    transform: translate(-50%, -50%);
    transform: scaleX(1) scaleY(1) perspective(500px) rotateY(-15deg) rotateX(8deg) rotateZ(-1deg);
    transition: 0.5s ease-out;
}

.osom img:hover {
    transform: scaleX(1) scaleY(1) perspective(500px) rotateY(0deg) rotateX(0deg) rotateZ(0deg);
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.buttonscontainer {
    text-align: center;
    justify-content: center;
    animation-name: sizing-text;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.buy-btn button {
    background: #d60084;
    border: none;
    width: 135px;
    height: 45px;
    color: white;
    border-radius: 50px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
    transition: .3s;
}

.buy-btn button:hover {
    background-color: #0080ff;
    box-shadow: 0 0 0 10px #0080fff8;
    color: #fff;
}

.dash-btn button {
    background: #0080ff;
    border: none;
    width: 165px;
    height: 45px;
    color: white;
    border-radius: 50px;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 85px;
    cursor: pointer;
    transition: .3s;
}

.dash-btn button:hover {
    background-color: #d60084;
    box-shadow: 0 0 0 10px #d60084f5;
    color: #fff;
}

.features{
    display: flex;
    justify-content: center;
    margin: 15vh 0;
    gap: 1em;
    width: 100%;
    flex-wrap: wrap;
    padding: 5em;
    overflow: hidden;
}

.feature{
    padding: 1em;
    background: #1e1e1e;
    max-width: 300px;
    border-radius: 1em;
    text-align: center;
    border: 2px solid #252525;
    flex: auto;
    transition: .2s ease;
}

.featureicon{
    width: 48px;
    height: 48px;
}

.pricing{
    display: block;
    justify-content: center;
    margin: 15vh 0;
    gap: 1em;
    width: 100%;
    flex-wrap: wrap;
    padding: 5em;
    overflow: hidden;
}

.pricingcard {
    padding: 1em;
    background: #1e1e1e;
    max-width: 400px;
    border-radius: 1em;
    text-align: center;
    border: 2px solid #252525;
    flex: auto;
    transition: .2s ease;
    margin-left: auto;
    margin-right: auto;
}

.gsbtn:hover {
    color: #0080ff;
    border-color: #0078f0;
}

.gsbtn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #ff3dd5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid #ee0093;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

@keyframes sizing {
    0% {
        scale: 10%;
        opacity: 10%;
        transform: translate(0px, 500px);
    }

    100% {
        scale: 50%;
        opacity: 100%;
    }
}

@keyframes sizing-text {
    0% {
        scale: 10%;
        opacity: 10%;
        transform: translate(0px, 500px);
    }

    100% {
        scale: 100%;
        opacity: 100%;
    }
}

@keyframes wave-animation {
    0% { transform: rotate( 0.0deg) }
   10% { transform: rotate(14.0deg) } 
   20% { transform: rotate(-8.0deg) }
   30% { transform: rotate(14.0deg) }
   40% { transform: rotate(-4.0deg) }
   50% { transform: rotate(10.0deg) }
   60% { transform: rotate( 0.0deg) }  
  100% { transform: rotate( 0.0deg) }
}