@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Stick+No+Bills:wght@200;300;400;500;600;700;800&display=swap');

@font-face {
    font-family: 'Hiatus';
    src: url(../fonts/hiatus_2/Hiatus.ttf) format('truetype'); 
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(90deg, lightgrey, grey);
    overflow-x: hidden;
}

#logo {
    position: absolute;
    top: 140px;
    left:0;
    right:0;
    margin-left:auto;
    margin-right:auto;
    width: 750px;
    height: 200px;
    background: linear-gradient(-20deg, lightgrey, whitesmoke, lightgrey);
    border: 3px solid whitesmoke;
    color: transparent;
    z-index: 0;
    box-shadow: 0px 10px 25px #25252586;
}

@media (max-width: 830px) {
    #logo {
        width: 92%;
    }
}

@media (max-width: 680px) {
    #logo {
        height: 30vw;
    }
}

@media (max-width: 430px) {
    #logo {
        top: 120px;
    }
}

#stripe1 {
    position: absolute;
    top: 80px;
    width: 100vw;
    height: 180px;
    background: #252525;
    color: transparent;
    z-index: -1;
    box-shadow: 0px 10px 25px #25252586;
    overflow-x: hidden;
}

#stripe2 {
    position: absolute;
    top: 200px;
    right: 0;
    width: 100vw;
    height: 200px;
    background: greenyellow;
    color: transparent;
    z-index: -2;
    box-shadow: 0px 10px 25px #25252586;
    overflow-x: hidden;
}

@media (max-width: 680px) {
    #bg1, #bg2 {
        height: 30vw;
    }
}

@media (max-width: 430px) {
    #bg1 {
        top: 80px;
    }

    #bg2 {
        top: 160px;
    }
}

nav {
    position: fixed;
    top: 0;
    left:0; 
    right:0;
    z-index: 10;
}

.menu {
    margin: auto; 
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1000px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    border-top: none;
    border-radius: 0px 0px 10px 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: radial-gradient(at 50% 0%, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.05));
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.menu a {
    text-align: center;
    padding: 22px 0px;
    font-weight: 600;
    color: #252525;
    transition: all 0.4s;
}

.menu a:hover {
    background: linear-gradient(90deg, rgba(172, 255, 47, 0.06), rgba(172, 255, 47, 0.3), rgba(172, 255, 47, 0.06));
    box-shadow: 0 10px 5px -5px rgba(172, 255, 47, 0.6);
}

.menu li {
    background-color: rgba(245, 245, 245, 0.7);
}

h1 {
    font-family: 'Stick No Bills', sans-serif;
    font-size: 8rem;
    font-weight: 300;
    position: relative;
    text-align: center;
    margin-top: 150px;
    margin-left: -6px;
}

h1 sub {
    font-family: 'Hiatus';
    font-size: 9rem;
    font-weight: 100;
}

@media (max-width: 680px) {
    h1 {
        font-size: 19vw;
        margin-top: 140px;
    }

    h1 sub {
        font-size: 21vw;
    }
}

@media (max-width: 430px) {
    h1 {
        font-size: 19vw;
        margin-top: 120px;
    }

    h1 sub {
        font-size: 21vw;
    }
}

main {
    margin: 100px auto 0px auto;
    padding: 5px 0px;
    position: relative;
    background: #252525;
    max-width: 940px;
    box-shadow: 0px 0px 10px greenyellow;
}

@media (max-width: 430px) {
    main {
        margin-top: 80px;
    }
}

.container-start {
    margin: 60px auto;
    padding: 50px;
    width: 90%;
    background: whitesmoke;
    border-radius: 10px;
    box-shadow: 0px 0px 10px black;
}

.container-start:hover {
    transform: scale(1.01);
    transition: all 0.2s;
}

@media (max-width: 650px) {
    .container-start {
        padding: 40px 20px;
    }
}

.container-start h2 {
    font-family: 'Stick No Bills', sans-serif;
    font-weight: 600;
    font-size: 3rem;
    margin-bottom: 50px;
}

.container-start a {
    color: #252525;
    background: white;
    padding: 4px;
    border-radius: 6px;
    font-weight: 800;
    transition: 0.5s;
}

.container-start a:hover {
    background: lightgray;
}

/* --------------------- About-page begin */

#container-about {
    margin: 60px auto;
    padding: 50px;
    width: 90%;
    background: whitesmoke;
    border-radius: 10px;
    box-shadow: 0px 0px 10px black;
    
}

@media (max-width: 650px) {
    #container-about {
        padding: 40px 20px;
    }
}

#container-about h2 {
    font-family: 'Stick No Bills', sans-serif;
    font-weight: 600;
    font-size: 3rem;
    margin-bottom: 50px;
}

@media (max-width: 420px) {
    #container-about h2 {
        font-size: 2.3rem;
    }
}

/* --------------------- About-page end */

/* --------------------- contact-page begin */


#container-contact {
    margin: 60px auto;
    padding: 50px;
    width: 90%;
    background: whitesmoke;
    border-radius: 10px;
    box-shadow: 0px 0px 10px black;
}

@media (max-width: 650px) {
    #container-contact {
        padding: 40px 20px;
    }
}

@media (max-width: 400px) {
    #container-contact {
        padding: 40px 0px;
    }
}

#container-contact h2 {
    font-family: 'Stick No Bills', sans-serif;
    font-weight: 600;
    font-size: 3rem;
    margin: 50px 0px 0px 10px;
}
@media (max-width: 400px) {
    #container-contact h2{
        margin: 0px 0px 0px 20px;
    }
}

form {
    font-size: 1.1em;
    margin: auto;
    width: 100%;
}

.contact-form {
    width: 80%;
    font-size: 1em;
    background: white;
    margin: 80px auto 0px auto;
    padding: 50px 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    border-top: 5px solid #252525;
    border-bottom: 5px solid #252525;
}

@media (max-width: 800px) {
    .contact-form {
        width: 90%;
    }
}

form label,
form input,
form textarea {
    font-weight: 600;
    margin: auto;
    display: block;
    width: 90%;
}

@media (max-width: 550px) {
form label,
form input,
form textarea {
    width: 100%;
}

}

form label {
    line-height: 1;
    margin-bottom: 10px;
}

form input,
form textarea {
    background: #252525;
    font: inherit;
    color: lightgrey;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid transparent;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 1) inset;
}

textarea {
    min-height: 200px;
    resize: vertical;
}

form input:hover,
form input:focus,
form textarea:hover,
form textarea:focus {
    outline: none;
    background: #353535;
    transition: 0.5s;
}

form button {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1em;
    display: block;
    width: 90%;
    background: greenyellow;
    color: #252525;
    border: none;
    margin: 20px auto 10px;
    padding: 15px 0px;
    cursor: pointer;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3) inset;
    transition: all 0.5s;
}

form button:hover,
form button:focus {
    outline: none;
    background: rgb(132, 219, 0);
    
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5) inset;
}
/* --------------------- contact-page end */



#foot-h1,
#foot-sub {
    margin: 50px auto;
    color: rgba(0, 0, 0, 0.25);
}

#foot-h1 {
    font-size: 4em;
}

#foot-sub {
    font-size: 1.1em;
}


footer {
    margin: 0px auto;
    padding: 5px;
    position: relative;
    max-width: 1000px;
    background: #252525;
    box-shadow: 0px 0px 10px greenyellow;
}

footer p {
    color: greenyellow;
    font-family: monospace;
    font-size: 0.9rem;
    text-align: center;
}

footer a {
    color: whitesmoke;
    font-weight: bold;
}

footer a:hover {
    color: greenyellow;
}