@font-face {
    font-family: "anonymous pro";
    src: url("./anonymous-pro.woff2");
}

:root {
    font-family: "anonymous pro";
}

* {
    padding: 0;
    margin: 0;
}

body {
    min-height: 150vh;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#background-svg {
    position: absolute;
    z-index: -10;
}

main {
    margin-top: 100px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 5rem;
    padding: 40px;
    border: 1px solid black;
    border-radius: 20px;
    font-weight: normal;
}

h2 {
    font-size: 3rem;
    font-weight: normal;
    text-align: center;
    margin-bottom: 2rem;
}

a {
    font-size: inherit;
    color: inherit;
}



#feature-product-showcase {
    margin-top: 100px;
    width: calc(100% - 120px);
    border: 1px solid black;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    padding: 60px;
}

#feature-product-image {
    width: calc(50% - 30px);
}

#feature-product-image img {
    border: 1px solid black;
    width: 100%;
    border-radius: 20px;
}

#feature-product-description {
    border: 1px solid black;
    width: calc(50% - 30px);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

#feature-product-description p {
    width: 90%;
    font-size: 1.5rem;
}

#feature-product-description table {
    width: 70%;
}

#feature-product-description a {
    margin-left: 80%;
}