/* Gainax Films 1/29 */
/* Yeah I also decided to start adding the dates to my comments HAHAHA */
* {
    margin: 0;
    padding: 0;
    list-style: none;
    scroll-behavior: smooth;

}

/* Also this took me like 4 days to make (the project) so please give it a spin :) */
body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color: #0B1012;
    color: white;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    border-bottom: #1F2937 solid 1px;
}

.home-link {
    font-size: 26px;
    color: white;
    transition: ease 0.3s color;
}

.home-link:hover {
    color: #1F2937;
}

.nav-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.nav-text {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.nav-text h1 {
    font-size: 50px;
}

h3 {
    font-size: 25px;
}

/*  */
.finsweet-img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.finsweet-img img {
    width: 80%;
    height: 500px;
    object-fit: cover;
    border-radius: 1.5rem;
    margin-bottom: 1rem;
    border: 0.4rem solid #ead067;
    box-shadow: 0 0 15px 1px #ead067;
}

.home-page {
    padding: 50px 100px;
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

span {
    color: #ad9470;
}

.heading {
    font-size: 30px;
    margin-bottom: 50px;
}

.sub-heading {
    font-size: 30px;
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.sub-p {
    color: #ead067;
}

.description {
    font-size: 25px;
    width: 80%;
    line-height: 1.7;
    margin-bottom: 50px;
    color: grey;
}

/* Links */
.links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-links {
    display: flex;
    align-items: center;
    gap: 10px;
    border: #ead067 solid 1px;
    font-size: 36px;
    text-align: center;
    padding: 10px 20px;
    color: #ead067;
    transition: all .40s ease;
    border-radius: 5px;
}

.links a {
    text-decoration: none;
    color: aliceblue;
}

.btn-links:hover {
    background: #ead067;
    color: white;
}

/* Footer */

footer {
    background: #12141c;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* Responsive Styling */

/* Nav menu */
@media (max-width: 500px) {
    .nav-menu {
        display: none;
    }
}

/* Main Picture */
@media (max-width: 768px) {
    .finsweet-img img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 1.5rem;
        margin-bottom: 1rem;
        border: 0.4rem solid #ad9470;
        box-shadow: 0 0 15px 1px #ad9470;
    }
}

@media (max-width: 500px) {
    .finsweet-img img {
        height: 200px;
    }
}

@media (max-width: 450px) {
    .home-page {
        padding: 50px 50px;
    }
}

/* Sub Heading */
@media (max-width: 670px) {
    .sub-heading {
        display: flex;
        flex-direction: column;
    }
}

/* Description */
@media (max-width: 650px) {
    .description {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .description {
        font-size: 20px;
    }
}

/* Link buttons */
@media (max-width: 425px) {
    .links {
        display: flex;
        flex-direction: column;
        align-items: unset;
    }
}