@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Slab', serif;
}

body {
    /* background: linear-gradient(to top, #b5b5b5, #ffffff); */
    /* background-color: #ffffff; */
    background: radial-gradient(#fff, #d3d3d3);
}

.navbar-container {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.navbar {
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #000;
    border-radius: 1.5rem;
    border: 4px solid #000;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    margin-bottom: 3rem;
}

.navbar-logo a {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-logo a:hover {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.navbar-logo{
    transition: all 0.3s ease;
}

.navbar-logo:hover{
    transform: scale(1.05) rotate(2deg);
}

.navbar-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    background-color: transparent;
}

.navbar-links a {
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
}

.navbar-links a:hover {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    transform: scale(1.05) rotate(-2deg);
}

.title {
    font-size: 6rem;
    font-weight: 900;
    color: #111111;
    text-align: center;
    margin-bottom: .2rem;
}

.description {
    font-size: 2rem;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin-bottom: 2rem;
}

.buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.start-button {
    background-color: #44a047;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 1.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    cursor: pointer;
    border: 4px solid #000;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}
.start-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5);
}

.price-button {
    background-color: #8eb0ff;
    color: #000;
    border: 4px solid #000;
    font-size: 2.2rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}
.price-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5);
}

.container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.content {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.features-container-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.features-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
    gap: 3rem;
}

.features-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 1rem;
}

.features-image {
    width: 50%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    border: 4px solid #000;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
}

.features-title {
    font-size: 3rem;
    font-weight: 900;
    color: #111111;
    text-align: center;
}

.features-description {
    font-size: 2rem;
    font-weight: normal;
    color: #000000;
    text-align: start;
}

.pricing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.pricing-title {
    font-size: 6rem;
    font-weight: 900;
    color: #111111;
}

.pricing-description {
    font-size: 2rem;
    font-weight: 500;
    color: #000000;
    text-align: center;
}

.pricing-cards {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 4px solid #000;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
    border-radius: 1.5rem;
    padding: 2rem;
    width: 30%;
    height: 100%;
    background-color: #ffffff;
}

#basic-card {
    background-color: #44a047;
}

#pro-card {
    background-color: #8eb0ff;
}

#premium-card {
    background-color: #ff4444;
}

.pricing-card-title {
    font-size: 3rem;
    font-weight: 900;
    color: #111111;
}

.pricing-card-description {
    font-size: 2rem;
    font-weight: 500;
    color: #000000;
    text-align: center;
}

.pricing-card-price {
    font-size: 2rem;
    font-weight: 500;
    color: #000000;
    text-align: center;
}

.pricing-card-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pricing-card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card-features ul li {
    font-size: 2rem;
    font-weight: 500;
    color: #000000;
    text-align: center;
}

.pricing-card-button {
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 1.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 4px solid #000;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}
.pricing-card-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5);
}

#basic-card .pricing-card-button {
    background-color: #44a047;
}

#pro-card .pricing-card-button {
    background-color: #8eb0ff;
}

#premium-card .pricing-card-button {
    background-color: #ff4444;
}