@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Roboto+Mono:wght@100;200;400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
}
body {
    background-color: #e1b5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto Mono', monospace;
    width: 100vw;
    height: 100vh;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(https://gs-nasc.github.io/assets/images/blend.png);
    mix-blend-mode: overlay;
    pointer-events: none;
    opacity: 0.2;
    z-index: 1;
}

.quadradoprincipal {
    width: 800px;
    height: 600px;
    background: #f5e5ff;
    position: relative;
    border: solid 2px #b263e7;
}

/* este é só o alinhamento do titulo e a borda dele*/
.title {
     text-align: center;
     border-bottom: solid 2px #b263e7;
}

.title p {
     margin: 0;
     padding: 0;
}

ul {
     padding: 0;
     margin: 0;
     list-style-type: none;
}
.row{
    display: flex;
    flex-direction: row;
    width: 100%;
}
.column{
    padding: 25px 0;
    flex: 50%;
    width: 50%;
}
.column:nth-child(1){
    padding-left: 45px;
    padding-right: 25px;
}
.column:nth-child(2){
    padding-right: 45px;
    padding-left: 25px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.column:nth-child(2) img {
    width: 269px;
    height: 300px;
}
h1{
    padding: 0;
    margin: 0;
}
li{
    font-size: 15px;
    margin-top: 4px;
}
span{
    font-size: 20px;
    width: 100%;
    text-align: center;
    margin-top: 7px;
    margin-bottom: 7px;
    display: inline-block;
}
q{
    font-size: 11.5px;
    font-weight: bold;
    font-style: italic;
}
q.prettypretty{
    margin-top: 7px;
}

.icons ul li{
    display: inline-block;
    margin: 0;
    padding: 0;
}
.icons svg{
    fill: #3d3d3d;
    color: #3d3d3d;
}
.borderbottomicons{
    margin-top: -8px;
}
.icons{
    display: flex;
    align-items: center;
    justify-content: center;
}
.girlbike{
    height: 82px !important;
}
.copyright{
    font-size: 14px;
    font-style: italic;
    margin-top: 16px;
}
.loading{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #e1b5ff;
    z-index: 10;
    align-items: center;
    justify-content: center;
    display: flex;
    font-family: 'Press Start 2P', cursive;
    flex-direction: column;
}
.loading.disable{
    display: none;
}
.loading span{
    font-size: 28px;
}
.retangle{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 290px;
    height: 30px;
    background-color: black;
    border-radius: 20px;
    border-style: solid;
    border-width: 4px;
    border-color: #000;
    border-image-slice: 4;
    border-image-width: 2;
    border-image-outset: 0;
    border-image-source: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12'><path d='M2 2h2v2H2zM4 0h2v2H4zM10 4h2v2h-2zM0 4h2v2H0zM6 0h2v2H6zM8 2h2v2H8zM8 8h2v2H8zM6 10h2v2H6zM0 6h2v2H0zM10 6h2v2h-2zM4 10h2v2H4zM2 8h2v2H2z' fill='%23000' /></svg>")
}
.retangle div{
    height: 100%;
    width: calc((93%/6) - 6px);
    margin: 0 3px;
}
.retangle div.active{
    background-color: white;
}