@import url('https://fonts.googleapis.com/css2?family=Akaya+Kanadaka&family=Fascinate&family=Ravi+Prakash&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Flavors&family=Ribeye+Marrow&family=Teko&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: rgb(43, 86, 119);
}

nav {
    background-image: linear-gradient(260deg, rgb(33, 101, 153) 0%, rgb(29, 69, 99) 50%, rgb(10, 59, 97) 100%);
    height: 80px;
    width: 100%;
    position: fixed;
    /* Set the navbar to fixed position */
    top: 0;
    /* Position the navbar at the top of the page */
    width: 100%;
    /* Full width */
}

label.logo {
    color: white;
    font-size: 30px;
    line-height: 80px;
    padding: 0 100px;
    font-family: 'Fascinate', cursive;
}

label.logo span {
    color: #5383d3;
}

nav ul {
    float: right;
    margin-right: 10px;
}

nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 1px;
}

nav ul li a {
    font-family: 'Ribeye Marrow', cursive;
    color: white;
    font-size: 17px;
    text-transform: uppercase;
    padding: 7px 10px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

a.active,
a:hover {
    background: #1b9bff;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.checkbtn {
    font-size: 30px;
    color: white;
    float: right;
    margin-right: 40px;
    cursor: pointer;
    line-height: 80px;
    display: none;
}

#check {
    display: none;
}

@media (max-width: 1099px) {
    label.logo {
        font-size: 50px;
        padding-left: 50px;
    }
    nav ul li a {
        font-size: 16px;
    }
}

@media (max-width: 985px) {
    label.logo {
        font-size: 40px;
        padding-left: 50px;
    }
    nav ul li a {
        font-size: 16px;
    }
}

@media (max-width: 895px) {
    label.logo {
        font-size: 20px;
        padding-left: 15px;
    }
    .checkbtn {
        display: block;
        padding-top: 30px;
        line-height: 80px;
    }
    ul {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #2c3e50;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -ms-transition: all .5s;
        -o-transition: all .5s;
    }
    nav ul li {
        display: block;
        margin: 60px 0;
        line-height: 30px;
    }
    nav ul li a {
        font-size: 15px;
    }
    a:hover,
    a.active {
        background: none;
        color: #0082e6;
    }
    a.active {
        background: none;
        color: white;
    }
    #check:checked~ul {
        left: 0;
    }
}

.content {
    align-items: center;
}

.content h1 {
    font-family: 'Ravi Prakash', cursive;
    text-align: center;
    margin-top: 200px;
    color: white;
    padding-bottom: 50px;
    font-size: 48px;
}

.content p {
    font-family: 'Akaya Kanadaka', cursive;
    text-transform: uppercase;
    float: centre;
    text-align: center;
    color: #fff;
    margin-bottom: 100px;
}


/* Style inputs */

input[type=text],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #45a049;
}


/* Style the container/contact section */

.container {
    margin-top: 70px;
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 10px;
    font-family: 'Akaya Kanadaka', cursive;
}

.container h2 {
    margin-top: 40px;
    margin-bottom: 10px;
}


/* Create two columns that float next to eachother */

.column {
    float: left;
    width: 50%;
    margin-top: 6px;
    padding: 20px;
}


/* Clear floats after the columns */

.row:after {
    content: "";
    display: table;
    clear: both;
}


/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */

@media screen and (max-width: 600px) {
    .column,
    input[type=submit] {
        width: 100%;
        margin-top: 0;
    }
}

footer {
    margin-top: 10px;
    background: rgba(44, 44, 44, 0.672);
    width: 100%;
}

footer p {
    color: white;
    text-align: center;
    padding: 10px;
}

.home a {
    text-decoration: none;
    font-size: 20px;
    padding: 7px;
    font-family: 'Flavors', cursive;
}

.home button {
    margin-top: 20px;
    margin-left: 20px;
}

.home a:hover {
    background: none;
}

canvas {
    margin-left: 200px;
    cursor: pointer;
}