@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Raleway&display=swap');

* {
    margin: 0;
    padding: 0;
    border: none;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #7b1aba;
}

/* Headings and logo */

h1 {
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 400%;
    color: #894ac5;
    text-align: center;
    padding-top: 50px;
    margin: 50px 0 20px;
}

.left {
    width: 100%;
}

.right {
    width: 100%;
    height: 50px;
    padding-top: 15px;
    top: 0;
    left: 0;
    overflow: hidden;
    background-color: #6d1abb;
    color: white;
    text-align: center;
    position: fixed;
}

.right li {
    font-size: 175%;
    text-transform: uppercase;
    display: contents;
    color: white;
}

.right a:hover {
    border-radius: 120px;
    background-color: crimson;
}

.right a {
    padding: 75px;
    color: white;
    text-decoration: none;
}

a.active {
    border-radius: 120px;
    background-color: crimson;
}

#home-image {
    height: 1200px;
    width: 100%;
    background: url(../images/hero_image.jpg) no-repeat center center;
    background-size: cover;
    padding-top: 50px;
    position: static;
}

h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 200%;
    font-weight: lighter;
    color: white;
    background-color: rgba(155, 88, 213, 0.8);
    border-radius: 5px;
    text-align: left;
    letter-spacing: 4px;
    width: 600px;
    height: auto;
    padding: 25px;
    left: 20px;
    top: 50px;
}

/* Footer and media links */

footer {
    background-color: #6d1abb;
    padding: 3px;
    position: fixed;
    bottom: 0px;
    right: 0;
    width: 100%;
    height: 50px;
}

footer>a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    font-size: 150%;
    letter-spacing: 50px;
    float: right;
}

footer>p {
    color: white;
    padding: 12px 15px;
    font-size: 110%;
    text-align: left;
}

/* About page */

h2 {
    font-family: 'Raleway', sans-serif;
    text-align: center;
    font-size: 200%;
    color: #894ac5;
}

.text {
    text-align: left;
    padding: 10px;
    margin: 2% 2% 5%;
    width: auto;
    font-size: 180%;
}

.text h2 {
    text-transform: uppercase;
    margin-top: 10px;
}

.body {
    text-align: center;
    padding-bottom: 35px;
    padding-top: 20px;
}

.body img {
    width: 1200px;
    height: auto;
    border: 0.5px ridge #6d1abb;
    border-radius: 50px;
    padding: 3px;
}

ol {
    margin-top: 10px;
    margin-left: 15px;
}

.text li {
    text-transform: none;
    font-size: 110%;
    margin-left: 25px;
    padding-top: 10px;
    padding-left: 25px;
}

.extlink a:hover {
    cursor: pointer;
}

/* Abc page */

#alphabet {
    margin: 50px 50px;
    text-align: center;
}

.borderthin {
    border: 1.5px solid #7601e4;
    padding: 5px;
    border-radius: 20px;
}

/* Sign Up page - form */


.form-section {
    clear: left;
    background: url(../images/hands.jpg);
    background-position: center;
    background-size: cover;
    height: 1300px;
    position: static;
}


.form-section h5 {
    color: white;
    font-style: oblique;
    font-weight: lighter;
}

.signup-form {
    margin: 150px 10% 0 0;
    color: white;
    font-size: 150%;
    background-color: rgba(155, 88, 213, 0.8);
    width: 850px;
    position: absolute;
    left: 10%;
    padding: 25px;
    border-radius: 10px;
}

.signup-form h2 {
    color: white;
    margin-bottom: 20px;
}


select#signup {
    font-size: inherit;
    font-family: inherit;
    height: 40px;
    border-radius: 5px;
}

.text-input {
    background: transparent;
    font-family: inherit;
    color: white;
    width: 100%;
    font-size: inherit;
    height: 40px;
    padding: 4px;
    margin: 5px 0 20px 0;
    border: 1px solid white;
    border-radius: 3px;
}

.text-input:hover {
    border-color: #6d1abb;
}

.join-button {
    margin-top: 20px;
    border-radius: 10px;
    padding: 10px 25px 10px 25px;
    text-align: center;
    font-size: 95%;
    background-color: #6d1abb;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.719);
    color: white;
    display: block;
    float: right;
    font-family: 'Montserrat';
    cursor: pointer;
}

.join-button:hover {
    background-color: white;
    color: #6d1abb;
}

/* Form submission afterpage - Thank you page */

.logo {
    padding-top: 50px;
}
#thankyou {
    
    margin: 3% 5%;
    font-size: x-large;
    text-align: center;
}

h2 i {
    font-size: 150%;
}

/* Media queries */

/* Large screens 1200px wide and down */

@media screen and (max-width: 1200px) {

    h1 {
        font-size: 300%;
        text-align: center;
    }

    .right li {
        font-size: 150%;
    }

    .right a {
        padding: 50px;
    }

    .right a:hover {
        border-radius: 100px;
    }

    a.active {
        border-radius: 100px;
    }

    h3 {
        font-size: 150%;
        width: 600px;
        height: auto;
        padding: 30px;
        left: 0;
        margin: 0;
    }
    
    footer {
        height: 50px;
    }

    footer>a {
        font-size: 165%;
    }

    .text {
        font-size: 160%;
    }

    .body img {
        width: 800px;
        height: 450px;
        padding: 3.5px;
    }

    ol {
        padding-bottom: 50px;
    }

    .form-section {
        clear: both;
        height: 1000px;
    }

    .form-section label {
        display: block;
    }

    .signup-form {
        margin: 15% 0 0 10%;
        font-size: 175%;
        width: 550px;
        padding: 35px;
    }

    select#signup {
        font-size: inherit;
    }

    .signup-form h2 {
        font-size: 120%;
    }

    h2 i {
        font-size: 120%;
    }
}

/* Medium screens - 850px and down */
@media screen and (max-width: 850px) {

    h1 {
        font-size: 225%;
        padding-top: 30px;
    }

    h3 {
        font-size: 130%;
        width: 350px;
    }

    .right {
        height: 40px;
    }

    .right li {
        font-size: 125%;
    }

    footer {
        height: 30px;
    }

    footer>a {
        font-size: 140%;
        padding: 1px 5px;
    }

    footer>p {
        font-size: 100%;
        padding: 7px 15px;
    }

    h2 {
        font-size: 130%;
    }

    .text {
        font-size: 110%;
    }

    .text h2 {
        font-size: 130%;
    }

    .body img {
        width: 650px;
        height: 365px;
    }

    ol {
        padding-bottom: 30px;
    }

    .signup-form {
        margin: 100px 20px 10px 20px;
        font-size: 130%;
        text-align: left;
        width: 500px;
        padding: 20px;
    }
   
    .form-section {
        height: 850px;
    }

    .form-section label {
        font-size: 110%;
    }
    

    select#signup {
        font-size: inherit;
    }

    .join-button {
        font-size: 80%;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.719);
    }
}

    /* Smaller screens */
    @media screen and (max-width: 700px) {

    h1 {
        font-size: 200%;
    }

    .right {
        width: 100%;
        height: 30px;
        padding-top: 10px;
        top: 0;
        left: 0;
        overflow: hidden;
        background-color: #6d1abb;
        color: white;
        text-align: center;
        position: fixed;
    }

    .right li {
        font-size: 120%;
    }

    .right a {
        padding: 30px;
    }

    #home-image {
        margin-top: 1px;       
    }

    h3 {
        font-size: 110%;
        width: 300px;
        height: 100px;
        padding: 25px;
        letter-spacing: 2px;
    }
    
    footer>a {
        font-size: 100%;
        letter-spacing: 25px;
        padding: 5px 10px;
    }

    footer>p {
        font-size: 80%;
    }

    h2 {
        font-size: 110%;
    }
       
    .text {
        font-size: 100%;
    }

    .body img {
        width: 450px;
        height: 253px;
    }

    .text h2 {
        font-size: 120%;
    }

    #alphabet {
        margin: 50px;
    }

    .form-section {
        margin-top: 20px;
    }

    .signup-form {
        margin: 10%;
        width: 450px;
        left: 7%;
    }

    .signup-form h2 {
        font-size: 120%;
    }

    .text-input {
        width: 85%;
        height: 20px;
    }

    h2 i {
        font-size: 120%;
    }
}

 /* Small screens (iPhones) */
    @media screen and (max-width: 577px) {

    h1 {
        font-size: 140%;
        letter-spacing: 1px;
        padding-top: 10px;
        text-align: center;
        margin: 10px 10px;
    }

    .left {
        margin-top: 50px;
        margin-left: 1px;
    }

    .right {
        width: 100%;
        height: 30px;
        padding-top: 10px;
        top: 0;
        left: 0;
        overflow: hidden;
        background-color: #6d1abb;
        color: white;
        text-align: center;
        position: fixed;
    }

    .right li {
        font-size: 100%;
        text-transform: uppercase;
        display: contents;
    }

    .right a {
        padding: 5px;
    }

    a.active {
        border-radius: 10px;
    }

    .right a:hover {
        border-radius: 10px;
    }

    #home-image {
        width: 100%;
        height: 650px;
    }

    h3 {
        font-size: 100%;
        width: 200px;
        height: auto;
        padding: 15px;
        letter-spacing: 1px;
    }
        
    footer {
        height: 25px;
    }

    footer>a {
        font-size: 100%;
        padding-top: 5px;
        letter-spacing: 5px;
    }

    footer>p {
        padding: 5px 15px;
        font-size: 55%;
    }
        
    h2 {
        font-size: 95%;
    }
  
    .text li {
        padding-top: 4px;
        padding-left: 10px;
        font-size: inherit;
    }

    .body img {
        width: 300px;
        height: 170px;
    }

    ol {
        margin-left: 5px;
    }

    .form-section {
        clear: both;
        background-position: center;
        margin-top: 0;
        height: 600px;
    }

    .form-section label {
        font-size: 110%;
    }

    .signup-form h2 {
        font-size: 130%;
    }

    .text-input {
        width: 95%;
        height: 30px;
    }

    .signup-form {
        font-size: smaller;
        width: 70%;
        margin-top: 20%;
        margin-left: 1%;
    }

    .join-button {
        font-size: 90%;
    }
}