
:root {
    --background: #000000;
    --rectBackground: #131313;
    --rectStroke: #535353;
    --accent: #ff7d1f;
}

html {
    scroll-behavior: smooth;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;

    background: var(--background);
}

h1{
    color: #ffffff;
    font-family: "Rubik";
    font-weight: 900;
    padding: 12px;
}

h2{
    color: #dfdfdf;
    font-family: "Rubik";
    font-weight: 700;
    padding-bottom: 5px;
}

p{
    color: #bfbfbf;
    font-family: "Rubik";
    font-weight: 300;
    padding-bottom: 3px;
}

button{
    background: var(--rectBackground);
    color: #ffffff;
    font-weight: 100;
    border: 1px solid var(--rectStroke);
    border-radius: 20px;
    min-height: 30px;
    max-height: 30px;
    min-width: 70px;
    max-width: 100px;
}

.navMenu{
    position: sticky;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.topPage{
    padding: 10px;
}

.mainBody{

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    align-items: flex-start;

    background: var(--rectBackground);
    width: 350px;
    border: 2px dotted var(--rectStroke);
    border-radius: 20px;
    padding: 20px;
    padding-bottom: 2000px;
}

.bodyItems{
    display: flex;
    justify-items: flex-start;
    align-content: flex-start;
}

.vRectCard {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-items: center;

    flex-grow: 1;
    
    width: 310px;
}