@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    box-sizing: border-box;

    font-family: "Montserrat";
}

body {
    font-family: "Montserrat";
    margin: 0;
    width: 100%;
}

.navbar {
    width: 100%;
    padding: 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 1) 0px 30px 60px -30px;
    display: flex;
}

.logo-header {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 20px;
    font-weight: 500;
    font-size: 1.4rem;
}

.left-navbar {
    display: flex;
    margin-left: auto;
}

.left-navbar p:nth-child(n + 1) {
    margin-left: 20px;
}

.register-big {
    padding: 10px 50px;
    border-radius: 50px;
    border: none;
    margin-left: 20px;
    background: linear-gradient(to left, rgb(255, 1, 43), rgb(5, 5, 255));
    color: white;
    font-size: 1.06rem;
}

.hero_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: slideUp 1s ease-in-out;
}

.hero_home {
    background-color: rgba(0, 0, 0, 0.425);
    z-index: 50;
    position: relative;
    background-size: cover;
    width: 100%;
    height: 500px;
    padding: 65px;
}

.hero_button {
    padding: 15px 47px;
    border-radius: 50px;
    border: none;
    background: red;
    position: relative;
    z-index: 50;
    color: white;
    font-size: 1.06rem;

    animation: slideDown 1s ease-in-out;
}

.hero_home h1,
.hero_home p {
    position: relative;
    z-index: 50;
    color: rgb(22, 22, 22);
    animation: slideDown 1s ease-in-out;
}

.hero_selling_points {
    padding: 50px;
    text-align: center;
}


.plans {
    display: flex;
}

.sellingCard {
    width: 300px;
    height: 400px;
    padding: 10px 50px;
    background-color: rgb(247, 247, 247);
    border: 2px solid #ff1131;
    border-radius: 8px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 1) 0px 30px 60px -30px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(200px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}