<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1, h3, p {
  font-size: 7vw;
}

@media only screen and (min-width: 400px) {
  h1, h3, p { 
    font-size: 40px;
  }
}

h1 {
    font-size: 7vw;
}

h3 {
    font-size: 40px;
}

p {
    font-size: 4vw;
}

h1, h3, p, label, input {
    color: rgb(250, 200, 190);
    font-family: 'Courier New', Courier, monospace;

}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

button {
    width: 75px;
    height: 50px;
    border: 3px solid rgb(250, 200, 190);
    border-radius: 30%;
    margin: 0 1vw;
    color: rgb(250, 200, 190);
    background: rgb(93, 149, 230);
}

button:hover {
    background: rgb(250, 200, 190);
    color: rgb(93, 149, 230);
    box-shadow: inset 0 0 0 3px  rgb(93, 149, 230);
}

.jokeContainer {
    display: flex;
    justify-content: center;
    margin: -1vw 0;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(250, 200, 190);
    width: 100vw;
    height: 5vw;
    position: fixed;
    bottom: 0;
}

footer &gt; p {
    color: rgb(93, 149, 230);
    font-size: 2vw;
}

.heading {
    margin: -3vw;
}

body {
    /* background-image: url('https://cdn.dribbble.com/users/44485/screenshots/2702434/male-2.gif');
    background-size: cover; */
    /* background-repeat: no-repeat; */
    background-color: rgb(93, 149, 230);
}

a {
    color: rgb(250, 200, 190);
}

label {
    color: rgb(250, 200, 190);
    font-size: 3vw;
}

input {
    color: rgb(250, 200, 190);
    border: 3px solid rgb(250, 200, 190);
    /* border-radius: 30%; */
    background: rgb(93, 149, 230);
    margin: 1vw;
    width: 25vw;
    height: 4vw;
    font-size: 2vw;
}

.signIn {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3vw;
}

.register {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3vw;
}

#authContainer {
    display: flex;
    flex-direction: column;
}

#btnContainer {
    display: flex;
}</pre></body></html>