@import "assets/Nunito/stylesheet.css";
@import "assets/VictorMono/stylesheet.css";

body {
    background-color: #131313;
    color: #E3E3E3;
    font-family: Nunito, Arial, Helvetica, sans-serif;
}

h1 {
    font-weight: 900;
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: 2em;
}

h2 {
    font-size: 1.1em;
}

a {
    text-decoration: none;
}

#header {
    text-align: center;
    margin-top: 3em;
    margin-bottom: 5em;
    padding-bottom: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    border-bottom: solid 1px #a425c4;
    box-shadow: 0 50px 50px #a425c466;
}

@media (min-width: 782px) {
  #header {
    flex-wrap: nowrap;
    flex-direction: row;
  }
  #logo {
    margin-right: 1em;
  }
}

#logo img {
    aspect-ratio: 1;
    object-fit: contain;
    width: 128px;
}

#title {
    margin-bottom: 0;
}

#tagline {
    margin-top: 0;
    color: #A425C4;
    font-weight: 500;
}

#main-buttons-wrapper {
    margin-top: 0;
    margin-bottom: 1em;
    /*margin-left: auto;
    margin-right: auto;*/
    max-width: 1280px;
    padding-left: 10%;
    padding-right: 10%;
}

#main-buttons {
    display: flex;
    gap: 2px 2px;
    align-items: stretch;
    justify-content: center;
    box-sizing: border-box;
    flex-wrap: nowrap;
    max-width: 300px;
    margin-right:auto;
    margin-left:auto;
    flex-direction: column;
}

#header-buttons {
    display: flex;
    gap: 1em;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex-wrap: wrap;
    margin-right:auto;
    margin-left:auto;
    margin-bottom: 1em;
    flex-direction: row;
}

/*@media (min-width: 782px) {
  #main-buttons {
    flex-wrap: nowrap;
    flex-direction: row;
  }
}*/

.button {
    padding: .5em;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.button-image {

    margin: 0;
    text-align: center;
}

.button-image img {
    aspect-ratio: 1;
    object-fit: contain;
    width: 40px;
}

.button-title {
    margin: 0;
    margin-left: 1em;
    text-align: left;
    font-size: 1em;
}

#main-buttons .button {
    background-color: #E3E3E3;
    padding: .5em;
}

#header-buttons .button {
    border: #a425c4 solid 1px;
    padding: .2em 1em;
    border-radius: 9999px;
}

#main-buttons .button-title a {
    color: #121212;
    font-weight: 600;
}

#header-buttons .button-title a {
    color: #a425c4;
    font-weight: 700;
}

#main-buttons div:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
}
#main-buttons div:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

#content {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    text-align:center;
}

#content img {
    max-width:100%;
    max-height:100%;
    height:auto;
    box-shadow: 0 0 100px #a425c488;
    border: 3px solid #a425c4;
    border-radius: 10px;
}

#footer {
    text-align: center;
    margin-top: 5em;
    border-top: solid 1px #a425c4;
    box-shadow: 0 -50px 50px #a425c466;
}

#footer a {
    color: #E3E3E3;
    font-weight: 900;
}