* {
    margin: 0;
    padding: 0;
}

html {
    background-color: #141414;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

h1 {
    font-weight: bold;
    font-size: 50px;
    text-align: center;
}




/*---------------Hero Section------------------*/

.body_content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.main {
    background-color: #141414;
}

.main_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin: 0 auto;
    height: 60vh;
    background-color: #141414;
    z-index: 1;
    width: 100%;
    padding: 0 50px;
}

.main_content {
    width: 40vw;
    text-align: justify;
}

.main_content h1 {
    font-size: 4rem;
    background-color: #92ff77;
    background-image: linear-gradient(to top, #31ff08 0%, #f8f54d 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main_content h2 {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.main_content p {
    margin-top: 1rem;
    margin-right: 3rem;
    font-size: 1rem;
    color: #fff;
}

.main_btn {
    font-size: 1rem;
    background-image: linear-gradient(to top, #3bb809 0%, #88cf05 100%);
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    color: #fff;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
}

.main_btn a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
}

.main_btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #4837ff;
    transition: all 0.35s;
    border-radius: 4px;
}

.main_btn:hover {
    color: #fff;
}

.main_btn:hover:after {
    width: 100%;
}

.main_img-container {
    text-align: center;
}

#main_img {
    height: 90%;
    width: 100%;
    border-radius: 5px;
    outline: 5px solid green;
    outline-offset: 10px;
}

.main_img_contact-container {
    text-align: center;
}

#main_img_contact {
    height: auto;
    width: auto;
    border-radius: 5px;
    outline: 5px solid green;
    outline-offset: 10px;

}

button a {
    text-decoration: none;
    color: #fff;
}

.social_icons {
    display: flex;
    justify-content: space-between;
    width: 250px;
    align-items: center;
}

.social_logo {
    color: #fff;
    justify-self: flex-start;
    margin-left: 20px;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.social_icon-link {
    color: #fff;
    font-size: 24px;
}

.gamelink {
    color: #6fda0b;
    font-weight: bolder;
    font-size: medium;
}

/*----------------Hero Mobile Responsive----------------------*/

@media only screen and (max-width: 768px) {
    .main_container {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-self: center;
        width: 100%;
        margin: 0 auto;
        min-height: 90vh;
    }

    .main_content {
        text-align: center;
        margin: 3rem;
        height: 90vh;
    }

    .main_content h1 {
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .main_content h2 {
        margin-top: 1rem;
        font-size: 1.5rem;
    }

    .main_container p {
        margin-top: 00.5rem;
        font-size: 1rem;
    }

    .main_img-container {
        text-align: center;
        margin-bottom: 200px;
        height: 400px;
        width: 370px;
    }
    
    #main_img {
       height: 400px;
        width: 370px;
    }
}

@media only screen and (max-width: 480px) {
    .main_content h1 {
        font-size: 1.7rem;
        margin-top: 3rem;
    }

    .main_content h2 {
        margin-top: 1rem;
        font-size: 1.2rem;
    }

    .main_content p {
        margin-top: 1rem;
        font-size: 0.77rem;
    }
    
    #main_img {
        height: 300px;
        width: 270px;
    }

    .social_icons {
        display: flex;
        justify-content: space-between;
        width: 150px;
        align-items: center;
    }
    
    .social_logo {
        color: #fff;
        justify-self: flex-start;
        margin-left: 20px;
        cursor: pointer;
        text-decoration: none;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        margin-bottom: 5px;
    }
    .social_icon-link {
        color: #fff;
        font-size: 20px;
        padding-top: 5px;
    }
}


/*----------------Services Section Index----------------------*/

.services {
    background: #141414;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.services h1 {
    background-color: #abf82e;
    background-image: linear-gradient(to right, 
    #abf82e 0%, 
    #97f847 0%, 
    rgb(96, 247, 27) 21%, 
    #20a51c 52%, 
    rgb(16, 139, 32) 78%, 
    #097913 100%);
    background-size: 100%;
    margin-top: 7rem;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}


.services_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: space-between;
}

.collapsible {
    width: 80vw;
    border-radius: 4px;
    font-weight: 500;
    margin: 10px;
    background-image: linear-gradient(to left, 
    rgba(17, 17, 17, 0.753) 100%, rgba(17, 17, 17, 0.904) 50%,
    rgba(17, 17, 17, 0.959) 100%),
    url('Images/Writing/360_F_275790982_MrqSIbEEYMQbnE7hC6DyLfagA6QdWPCj.jpg');
    position: relative;
    color:#fff;
    text-align: justify;
}

.collapsible input {
    display: none;
}

.collapsible:nth-child(2) {
    background-image: linear-gradient(to left, 
    rgba(17, 17, 17, 0.753) 100%, rgba(17, 17, 17, 0.904) 50%,
    rgba(17, 17, 17, 0.959) 100%),
    url('Images/Stuntfest/header.jpg');
}

.collapsible:nth-child(3) {
    background-image: linear-gradient(to left, 
    rgba(17, 17, 17, 0.753) 100%, rgba(17, 17, 17, 0.904) 50%,
    rgba(17, 17, 17, 0.959) 100%),
    url('Images/MockingMimic/CoverArt.png');
}

.collapsible:nth-child(4) {
    background-image: linear-gradient(to left, 
    rgba(17, 17, 17, 0.753) 100%, rgba(17, 17, 17, 0.904) 50%,
    rgba(17, 17, 17, 0.959) 100%),
    url('Images/TetheredForever/Endcredits.png');
}

.collapsible:nth-child(5) {
    background-image: linear-gradient(to left, 
    rgba(17, 17, 17, 0.753) 100%, rgba(17, 17, 17, 0.904) 50%,
    rgba(17, 17, 17, 0.959) 100%),
    url('Images/HacknGo/Cover_2.png');
}

.collapsible:nth-child(6) {
    background-image: linear-gradient(to left, 
    rgba(17, 17, 17, 0.753) 100%, rgba(17, 17, 17, 0.904) 50%,
    rgba(17, 17, 17, 0.959) 100%),
    url('Images/LocustDefense/Locust\ Defense.PNG');
}

.collapsible:hover {
    transform: scale(1.075);
    transition: 0.2s ease;
    cursor: pointer;
}

.collapsible label {
    position: relative;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 4px;
    background-color: #486808c9;
}

.collapsible label:after {
    content: "";
    position: absolute;
    padding: 15px;
    background: url(arrow.svg) no-repeat 0 0;
}

.collapsible-text {
    max-height: 1px;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    top: -100%;
    opacity: 0;
    transition: all 0.7ms ease;    
}

.collapsible-text h2{
    padding-top: 20px;
    padding-bottom: 3px;
}

.collapsible input:checked ~ .collapsible-text {
    max-height: 900px;
    padding: 25px;
    padding-bottom: 50px;
    opacity: 1;
    top: 0;
}

.collapsible .collapsible-text .projectimages img{
    display: flex;
    height: 100px;
    width: 100px;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-around;
}





@media screen and (max-width: 960px) {
    .services {

        min-height: 300px;
    }

    .services h1 {
        font-size: 2rem;
        margin-top: 12rem;
    }
    
}

@media screen and (max-width: 480px) {
    .services {
        
        height: 1400px;
    }
    
    .services h1 {
        margin-top: 250px;
        font-size: 1.2rem;
    }

    .services_card {
        margin-top: 250px;
        width: 300px;
    }
}




/*--------------------Body Content Responsive-------------------------*/

@media screen and (maxwidth: 960px) {
    .body {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: space-around;
    }
}


/*--------------------Footer-------------------------

.footer_container {
    position: relative;
    background-color: #141414;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#footer_logo {
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.footer_links {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
}

.footer_link-wrapper {
    display: flex;
}

.footer_link-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
}

.footer_link-item h2 {
    margin-bottom: 16px;
}

.footer_link-item > h2 {
    color: #fff;
}

.footer_link-item a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer_link-item:hover {
    color: #e9e9e9;
    transition: 0.3s ease-out;
}
*/

/*--------------------Footer: Social icons-------------------------

.social_icon-link {
    color: #fff;
    font-size: 24px;
}

.social_media {
    max-width: 1000px;
    width: 100%
}

.social_media-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

.social_icons {
    display: flex;
    justify-content: space-between;
    width: 240px;
    align-items: center;
}

.social_logo {
    color: #fff;
    justify-self: flex-start;
    margin-left: 20px;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.website_right {
    color: #fff;
}

@media screen and (max-width: 820px) {

    .content_wrapper {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .footer_links {
        padding-top: 2rem;
    }

    #footer_logo {
        margin-bottom: 2rem;
    }
    
    .website_right {
        margin-bottom: 2rem;
    }

    .footer_link-wrapper {
        flex-direction: column-reverse;
    }

    .social_media-wrap {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .footer_link-item {
        margin: 0;
        padding: 10px;
        width: 100%
    }
    
}
*/


