:root {
    --shadow: 0px 8px 10px 3px #3337;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    text-decoration: none;
}



html {
    font-size: 16px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

body {
    overflow-x: hidden;
    color: #333;
}

main {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, #fff 45%, #480d71 95%);
    padding: 1rem;
}

.canvas-container {
    flex: 1;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    max-width: 1500px;
    position: relative;
    align-items: end;
    justify-content: center;
}

canvas {
    max-width: 1500px;
    height: 100%;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 100%;
}

.logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    width: 100%;
    max-width: 1500px;
}

.logo img {
    height: 100%;
    max-height: 55px;
    width: auto;
}

.logo:last-child img {
    float: right;
}

.title {
    position: absolute;
    top: 10%;
    font-size: 1.25rem;
    max-width: 700px;
    text-align: center;
    
}

.title h1 {
    background: linear-gradient(180deg, #480d71, #985dc1);
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem;
}



.download-button {
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    background: #682d91;
    box-shadow: var(--shadow);
    color: #fff !important;
    cursor: pointer;
    transition-duration: 450ms; 
    border: none;
    margin: auto;
    display: block;
}

.download-button a {
    width: 100%;
    height: 100%;
    font-size: 1.25rem;
    color: #fff;
}

.download-button:hover {
    background: #480d71;
}

.box {
    position: absolute;
    top: 20%;
    text-align: center;
    background: #fff1;
    backdrop-filter: blur(4px);
    border-radius: 8px;
    width: 250px;
    padding: 1rem;
    font-size: 1.25rem;
    border: 1px solid #3333;
    box-shadow: var(--shadow);
}

.box.left {
    left: 0;

}

.box.right {
    right: 0;

}

.pbs {
    color: #fff;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.sm-link{
    color: inherit;
}

.sm-link:hover {
    color: #985dc1;
}



.purple-gradient {
    background: linear-gradient(180deg, #480d71 15%, #fff);
}

.container {
    width: 100%;
    max-width: 1500px;
    margin: auto;
    padding: 100px 0px 20px;
    
}

.container.small {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 50px;
}

.mb {
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; 
    line-height: 1.5rem;
    grid-column-gap: 1rem;
    padding: 1rem;
}

.col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: center;
    margin: auto;
    max-width: 400px;
    height: 100%;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow), 0px -6px 0px 2px #682d91 inset;

}

.col img {
    max-width: 100%;
    height: auto;
}

.purple {
    color: #682d91;
}

.col h3 {
    color: #682d91;
    font-weight: bold;
    border-bottom: 1px solid #3333;
    padding-bottom: 1rem;
    width: 100%;
}

.dollar-signs {
    color: #682d91;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 5rem;
}


@media screen and (max-width: 1300px) {
    .box {
        top: 30%;
    }
}

@media screen and (max-width: 1200px) {
    html {
        font-size: 14px;
    }
    .box {
        top: 40%;
    }
}

@media screen and (max-width: 700px) {
    html {
        font-size: 12px;
    }
    .logo img {
        width: auto;
        max-width: 50%;
        height: auto;
        max-height: none;
    }
    .box {
        top: 60%;
        font-size: 1rem;
        max-width: 150px;
    }
    .row {
        grid-template-columns: 1fr;
        grid-row-gap: 2rem;
    }
}