@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root, body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: "Nunito", serif;
    font-style: normal;
    scroll-behavior: smooth;
}


.background {
    height: min-content;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../assets/page_background.png") ;
    display: flex;
    justify-content: center;
    padding: 100px 0;
}


.main-container {
    height: fit-content;
    width: 60%;
    display: flex;
    flex-direction: column;
    background: white;
    position: relative;
    margin-left: auto;
    padding: 0 20px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(236, 236, 236, 0.503);
}

.navbar {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: sticky;
    top: 100px;
    left: 3vw;
    background: rgb(255, 255, 255);
    z-index: 10;
    width: 15vw;
    height: 50vh;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
    margin: 0 5vw;
    min-width: 200px;
    min-height: fit-content;
}

.nav-header {
    width: 70%;
    padding: 0 15px;
    margin: 15px 14px;
}

.navlinks {
    color: rgb(75, 75, 75);
    margin: 0;
    font-weight: 500;
    display: flex;
    column-gap: 10px;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
}

.navlink {
    text-decoration: none;
    color: rgb(83, 83, 83);
    margin: 8px 0;
    font-weight: 700;
    display: flex;
    column-gap: 10px;
    flex-direction: row;
    padding: 10px 15px;
    border-radius: 10px;
    align-items: center;
}

.navlink:hover {
    color: rgb(0, 0, 0);
    background-color: rgb(233, 233, 233);
}

.nav-icons {
    height: 20px;
    width: 20px;
}

.top-bg {
    height: 20vw;
    width: 100%;
    border: 2px solid rgba(236, 236, 236, 0.503);
    border-left: 5px solid rgb(169, 29, 164);
    box-sizing: border-box;
    background: url("../assets/page_background.png");
    background-size: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.presskit-image {
    height: 15vw;
    width: 15vw;
    background-color: rgba(255, 255, 255, 0.795);
    border-radius: 20%;
    border: 2px solid rgba(236, 236, 236, 0.503);
    padding: 1vw;
}

.factsheet_desc {
    display: flex;
    flex-direction: row;
    height: fit-content;
    margin-bottom: 2vw;
}

.factsheet {
    width: 30%;
    height: min-content;
}

.description {
    width: 70%;
    /* background-color: rgb(247, 255, 221); */
    color: rgb(0, 0, 0);
}

.presskit-rest {
    display: flex;
    flex-direction: column;
}

p {
    font-size: 1rem;
    margin: 0;
}

a {
    text-decoration: none;
    color: #007bff;
}

a:hover {
    text-decoration: underline;
    color: #0056b3;
}

h1.header {
    font-size: 2.5rem;
}

h2 {
    margin-top: 2vw;
    font-size: 2rem;
}

h3 {
    font-weight: 800;
    margin-top: 30px;
    margin-bottom: 10px;
}

h4 {
    margin: 10px auto
}

p.presskit-text {
    margin: 0;
    font-size: 1.2rem
}

.bold-text {
    font-weight: 700
}

.social-icon {
    height: 35px;
    width: 35px;
    border: 0.5px solid rgba(108, 108, 108, 0.235);
    border-radius: 5px;
    padding: 2px;
    background: rgb(255, 255, 255);
}

.social-icon:hover {
    background: rgba(0, 0, 0, 0.1);
    text-decoration: none
}

a:has(.social-icon) {
    text-decoration: none;
    margin: 5px;
}

video {
    width: 100%;
}

.screenshots-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.screenshot {
    width: 16vw;
    background-color: rgba(255, 255, 255, 0.795);
    border-radius: 20px;
    border: 2px solid rgba(236, 236, 236, 0.503);
    padding: 1vw;
    min-width: 150px;
    object-fit: contain;
}

.downloads-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.download-link {
    background-color: rgba(255, 255, 255, 0.795);
    border-radius: 5px;
    border: 2px solid rgba(233, 233, 233, 0.503);
    padding: 1vw;
    text-decoration: none;
    color: rgb(0, 0, 0);
    transition: all 0.2s ease-in-out;
    width: 10vw;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
}

.download-link:hover {
    background-color: rgba(242, 251, 255, 0.795);
    border-radius: 5px;
    border: 2px solid rgb(0, 0, 0);
    padding: 1vw;
    text-decoration: none;
    color: rgb(41, 0, 244);
    font-weight: bold;
}

.credits-container {
    display: flex;
    flex-direction: column;
    gap: 2vw;
    flex-wrap: wrap;
    padding-bottom: 3vw;
}

.role {
    font-weight: bold;
    font-size: 1.5rem;
}

.name {
    font-size: 1.2rem;
    margin-top: 5px;
    width: fit-content;
}

.copy-name {
    cursor: pointer;
    color: #007bff;
    text-decoration: none;
}

.copy-name:hover {
    color: #0056b3;
    text-decoration: underline;
}


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

    h2 {
        font-size: 1.7rem;
        margin-top: 50px;
    }


    .navbar {
        display: none;
    }

    .main-container {
        width: 90%;
        margin: 0 auto;
    }

    .factsheet_desc {
        flex-direction: column;
    }

    .factsheet {
        width: 100%;
    }

    .description {
        width: 100%;
    }

    .screenshot {
        width: 40vw;
    }

    p.presskit-text {
        font-size: 1rem;
    }

    p {
        font-size: 1rem;
    }
}