@import url('https://fonts.googleapis.com/css2?family=Prompt: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&display=swap');

:root {
    --dark-color: #1F1F1F;
    --light-color: #E0E0E0;
    --primary-color: #00AAAA;
    --secondary-color: #AA00AA;
    --tertiary-color: #FF5555;
}
body{
    margin:0px;
    padding:0px;
    font-family: 'Prompt', sans-serif;
    background-attachment: fixed;
    background-position: center;
    background-color: var(--dark-color);
}
canvas{
    position: fixed;
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* TEXT FORMATTING */
.h1 {
    color: var(--dark-color);
    font-size: 76px;
    font-weight: 600;
}
.h2 {
    color: var(--dark-color);
    font-size: 38px;
    font-weight: 500;
}
.h3 {
    color: var(--dark-color);
    font-size: 26px;
    font-weight: 500;
}
.p{
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 400;
}
.p i a {
    color: var(--primary-color);
    text-decoration: none;
    transition:color .2s ease-in-out;
}
.p i a:hover {
    color: var(--secondary-color)
}
.p i a:active {
    color: var(--tertiary-color);
    transition:none;
}

/* NAVIGATION BAR */
.navbar{
    background-color:var(--dark-color);
    display:flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    margin: 8px;
    display: block;
    text-align: center;
}
.navbar div a {
    margin: 10px;
    padding: 12px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 14px;

    text-decoration: none;
    color: var(--light-color);
    font-size: larger;
}
.navbar div a:hover {
    background-color: var(--secondary-color);
    transition:color .2s ease-in-out;
}
.navbar div a:active {
    background-color: var(--tertiary-color);
}

.dropbutton {
    color: #00AAAA;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    margin-top: 12px;
    display: none;
    position: absolute;
    min-width: 140px;
    background-color: var(--dark-color);
    border-radius: 22px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown-content a {
    /* color: black; */
    /* padding: 20px; */
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {
    background-color: var(--secondary-color)
}
.dropdown:hover .dropdown-content {
    display: block;
}

/* SECTIONS */
.section {
    padding-left: 30px;
    padding-right: 30px;
    /* height: 500px; */
    background-color: var(--dark-color);
}
.translucent {
    background-color: rgba(255, 255, 255, 0.5);
    min-height: 500px;
}
.textBox {
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: flex-start;
    /* padding-right: 380px; */
    max-width: 1000px;
    margin-left: 30px;
    margin-right: 30px;
}
.centered {
    display: flex;
    align-items: center;
    justify-content: center;
}
.centeredVertical {
    display: flex;
    align-content: center;
}
.footerLegal {
    display: flex;
    justify-content: center;
    color: var(--light-color);
    font-size: 20px;
    font-weight: 400;
}

/* BOXES */
.boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    /* justify-content: space-evenly; */
    flex-wrap: wrap;
    padding: 32px;
}

@media (max-width: 1080px) {
    .boxStack {
        display: flex;
        flex-direction: row;
    }
}
@media (min-width: 1080px) {
    .boxStack {
        display: flex;
        flex-direction: column;
    }
    
}
.smallBox {
    background-color: var(--light-color);
    margin: 15px;
    padding: 18px;
    border-radius: 18px;
    width: 260px;
    height: 260px;
}
.smallBox div {
    display: flex;
    justify-content: center;
    text-align: center;
}
.largeBox {
    background-color: var(--light-color);
    margin: 15px;
    padding: 18px;
    border-radius: 18px;
    width: 480px;
    height: 250px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.largeBox div {
    display: flex;
    /* align-content: center; */
    /* text-align: left; */
    flex-direction: column;
}
.bigBox {
    background-color: var(--light-color);
    margin: 15px;
    padding: 24px;
    border-radius: 18px;
    width: 990px;
    /*height: 260px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
.stackBox {
    background-color: var(--light-color);
    margin: 15px;
    padding: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    border-radius: 18px;
    width: 260px;
    height: 90px;
}
.listBox {
    background-color: var(--light-color);
    margin: 15px;
    padding: 15px;
    border-radius: 18px;
    width: 580px;
    height: 250px;
    display: flex;
    flex-direction: column;
}
.lists {
    display: grid;
    grid-template-columns: 8% 42% 8% 42%;
}
.stackBoxIcon {
    height: 90px;
}
.smallIcon {
    height: 125px;
}
.largeIcon {
    height: 220px;
}

/* BUTTONS */
.buttons {
    display: flex;
    flex-direction: row;
    margin-top: 5px;
    margin-bottom: 5px;
}
.button {
    padding: 12px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 14px;
    margin: 10px;
    width:fit-content;
}
.button a {
    text-decoration: none;
    font-size: larger;
    color: var(--light-color);
}
.cyanButton {
    background-color: var(--primary-color);
}
/* .cyanButton:hover {
    background-color: var(--secondary-color);
}
.cyanButton:active {
    background-color: var(--tertiary-color);
} */

.purpleButton {
    background-color: var(--secondary-color);
}
/* .purpleButton:hover {
    background-color: var(--tertiary-color);
}
.purpleButton:active {
    background-color: var(--primary-color);
} */

.redButton {
    background-color: var(--tertiary-color);
}
/* .redButton:hover {
    background-color: var(--primary-color);
}
.redButton:active {
    background-color: var(--secondary-color);
} */

/* FOOTER */
.footer {
    display: flex;
    flex-direction: column;
    background-color: var(--dark-color);
    /* height: 150px; */
    padding-top: 40px;
    padding-bottom: 40px;
    color: var(--light-color);
}
.footerLinks {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
}
.footerLinks a {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 25px;
    margin-right: 25px;
    transition:color .2s ease-in-out;
}
.footerLinks a:hover {
    color: var(--secondary-color);
}
.footerLinks a:active {
    color: var(--tertiary-color);
    transition:none;
}
.footerIcons {
    display: flex;
    justify-content: flex-end;
    font-size: 26px;
    font-weight: 400;
    margin-right: 30px;
    margin-left: 30px;
}
.footerIcons i {
    margin: 6px;
    color: var(--light-color);
    transition:color .2s ease-in-out;
}
.footerIcons i:hover {
    color: var(--secondary-color);
}
.footerIcons i:active {
    color: var(--tertiary-color);
    transition: none;
}

/* @media screen and (max-width: 600) {
    .navbar a:not(:first-child) {display: none;}
    .navbar a.icon {
        float: right;
        display: block;
    }
}
@media screen and (max-width: 600){
    .navbar.responsive div {background-color: var(--secondary-color);}
    .navbar.responsive {position: relative;}
    .navbar.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .navbar.responsive div a {
        float: none;
        display: none;
        text-align: left;
    }
} */