:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
}
h1 {
    font-family: 'Organical';
    font-size: 4rem;
    font-weight: 100;
    margin-bottom: 5rem;
    color: rgb(255, 192, 252);
}
h2 {
    font-family: 'Lora';
    text-align: center;
}
body {
    background-image: URL(/shrines/Splash-IMGs/starcurtain.gif);
    background-repeat: repeat-x;
    background-color: rgb(36, 1, 43);
}
.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  
}
.shrine {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: 22.5rem;
    height: 22.5rem;
    border-radius: 3rem;
    background-color: rgb(240, 222, 250);
    margin: 1rem;
    padding: 1rem;
}
.shrine img {
    max-width: 240px;
}
    
 ::-moz-selection { /* Code for Firefox */
    color: rgb(230, 168, 122);
    background: rgb(81, 56, 6);
}
::selection {
    color: rgb(230, 168, 122);
    background: rgb(81, 56, 6);
}
