@import url("https://fonts.googleapis.com/css2?family=Merriweather+Sans&family=Montserrat&family=Sacramento&display=swap");

:root {
    --main-color : #05090f ;
    --secondary-color : #121924 ;
    --border-color: crimson;
    --text-color: GhostWhite;
    --text-color-secondary: rgb(218, 218, 236);
    --hover-color: #445b80;
    --click-color: #263a5c;

}

body {
    background-color: var(--main-color);
    color: var(--text-color);
    font-family: "Merriweather Sans", sans-serif;
}

.container {
    background-color: var(--secondary-color);
    font-size: 1.2rem;
    padding: 30px 20px;
    width: 95%;
    margin: 20px auto;
    border-radius: 20px;
}

.navbar {
    display: flex;
    flex-direction:row;
    align-items: center;
    width: 100%;
}

.navbar nav {
    display: flex;
    gap: 15px;
    margin-left: auto;
    margin-right: auto;
}
.navbar a {
    padding: 20px;
    margin: 0 10px;
    font-weight: bold;
    text-decoration: none;
    color: var(--text-color);
    border: 2px solid rgba(0, 0, 0, 0); 
    border-radius: 10px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.navbar a:hover {
    border-color: var(--border-color);
    background-color: var(--border-color);
}

#logo {
    max-width: 65px;
    width: auto;
    object-fit: contain;
}


#download-button {
    height: 80px;
    width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: var(--border-color);
    border-radius: 10px;
    color: var(--text-color);
    user-select: none;
    margin-top: 50px;
}

#download-button:active {
    background-color: #b11313;
}

#download-button-icon {
    object-fit: contain;
    height: 50px;
}

#download-button:hover #download-button-icon{
    animation: spin 1s linear infinite; 
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.main-content {
    max-width: 1000px;
    width: 100%;
    border-radius: 20px;
    background-color: var(--secondary-color);
    background: linear-gradient(180deg, var(--secondary-color), rgb(37, 35, 71));
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    margin-top: 5px;
    padding: 20px 80px;
}

.left-side-elements h1 {
    font-size: 3rem;
    margin: 0;
}

.left-side-elements h2 {
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0;
}

.download-container{
    display: flex;
    flex-direction: row;
    margin-bottom: 100px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.download-container .left-side-elements {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-bottom: -40px;
}

.picture-reel {
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: baseline;
    justify-content: center;
}

.picture-reel img {
    width: 300px;
    height: 300px;
    border: 2px solid var(--hover-color);
    border-radius: 12px;
}

.description p{
    text-align: center;
    font-size: 1.5rem;
}

.description {
    color: var(--text-color-secondary);

}

.list-item b{
    font-size: 1.1rem;
}

.list-item:not(:last-child) {
    margin-bottom: 12px;
} 


.list-item::marker {
    color: var(--hover-color);
    font-size: 1.5rem;
    content: "✦   ";
}

hr {
    width: 70%;
    opacity: 10%;
}
@media screen and (max-width: 767px) {
    .container {
        width: 100%;
        padding: 20px 10px;
    }
    .container .navbar {
        flex-direction: row;
    }
    .navbar a{
        justify-content: flex-start;
    }
    #logo {
        width: 50px;
    }
    .main-content {
        padding: 20px 15px;
        width: 100%;
        box-sizing: border-box;
    }
    .download-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
        margin-bottom: 40px;
        width: 100%;
    }
    .download-container .left-side-elements {
        align-items: center;
    }
    .main-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    .main-content h2 {
        font-size: 1.1rem;
    }
    #download-button {
        max-width: 100%;
    }

    .picture-reel {
    display: grid;
    flex-direction: row;
    text-align: center;
    align-items: baseline;
    justify-content: center;
}
}
