* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

body {
    background-image: linear-gradient(to bottom right, purple, deeppink, yellow);
    height: 100vh; width: 100vw;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    overflow: hidden;
}

#wrapper {
    display: flex;
    padding: 300px;
}

#wrapper2 {
    background-color:floralwhite;
    width: 40%;
    margin: 100px auto;
    padding: 20px;
    text-align: center;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
}

h1 {
    font-size: 50pt;
    padding: 10px;
}

nav {
    /* border: 2px solid blue; */
    font-size: 20pt;
    margin-left: 200px;
}

li {
    list-style-type: circle;
}

li:hover {
    list-style-type: disc;
    text-decoration: underline;
}

a {
    color: black;
    text-decoration: none;
    display: block; height: 100%; width: 100%;
    padding: 10px;
}

input[type=text] {
    border: 1px solid black;
    border-radius: 4px;
    height: 26px;
    font-size: 15pt;
}

input[type=text]#otherText {
    width: 60px;
}

h2 {
    margin-top: 20px; margin-bottom: 10px;
}

input[type=submit] {
    border: 1px solid grey;
    padding: 10px;
    margin-top: 20px;
    font-size: 14pt;
    border-radius: 10px;
}

input[type=submit]:hover {
    background-color: deeppink;
    color: white;

}

label {
    font-size: 16pt;
}

div#container {
    text-align: center;
}

div#container h1 {
    margin-top: 200px;
}

div#container p {
    font-size: 20pt;
}
a#return {
    display: inline;
    padding: 0px;
    color: yellow;
}

a#return:hover {
    text-decoration: wavy underline;
}