/* MAIN SHIT */

body {
    background-color: #101010;
    color: aliceblue;
    user-select: none;
}

p {
    font-family: monospace;
    font-size: 18pt;
    text-align: center;
}

/* DIVS AND TEXT AND STUFF */

div.body {
    text-align: center;
    padding: 20px;
}

div#container {
    /* border: 1px solid red; */
    width: 1500px;
    margin: auto;
}

div#title h1 {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 120pt;
    line-height: 10%;
}
div#title p {
    margin: auto;
    text-align: center;
}

div#title h2 {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 80pt;
    line-height: 80%;
}

div#bottom-right {
    position: fixed;
    right: 100px;
    bottom: 100px;
}

div#title h1:nth-child(2) {margin-left: 80px;}
div#title h1:nth-child(3) {margin-left: 300px;}
div#title h1:nth-child(4) {margin-left: 180px;}

hr {
    border-top: 1px solid aliceblue;
    transform: rotate(-4deg);
    width: 800px;
}

textarea {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: pink;
    font-family: monospace;
    font-size: 16pt;
    width: 600px;
    height: 400px;
    padding: 20px;
    resize: none;
}

textarea:focus {
    border: none;
    outline: none;
}

/* BUTTONS AND WHATNOT */
button {
    background-color: transparent;
    color: aliceblue;
    cursor: pointer;
    border: 2px dotted aliceblue;
    font-family: monospace;
    font-size: 16pt;
    padding: 20px;
    text-align: center;
    margin: auto;
}

button:hover {
    background-color: slateblue;
    border: 2px solid aliceblue;
    font-style: italic;
    text-decoration: underline;
}

/* IMAGES */

div#stars {
    z-index: -1;
}

img.star {
    position: fixed;
    width: 64px;
    height: 64px;
}

img.twinkle {
    animation: twinkle 5s linear infinite;
}

div#proud-div {
    z-index: 10;
}

img.balloon {
    animation: float 20s linear infinite;
    height: 400px;
}

img.balloon:hover {
    cursor: pointer;
}

img.gallery {
    height: 600px;
}

/* STUFF TO BE PROUD ABOUT */
div#proud-div {
    /* border: 1px solid aliceblue; */
    /* display: none; */
    margin: auto;
}

/* ANIMATIONS */

@keyframes twinkle {
    0% {opacity: 1};
    50% {opacity: 0}
    100% {opacity: 1};
}

@keyframes float {
    from {left: -10vw;}
    to {left: 100vw;}
}
