* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    cursor: url('cursor.png') 20 10, auto;
}
body {
    margin-left: 10%;
    margin-right: 10%;
    min-height: 100vh;
    background-color: #032A2C;
    color: azure;
    font-family: "Victor Mono", monospace;
    font-weight: 300;
    display: flex;
    flex-direction: column;
}
a, button {
    cursor: url('cursorrk2.png') 20 10, auto;

}
a {
    color: #FFA1E1;
    text-decoration: none;
    transition: 0.2s;
    text-underline-offset: 4px;
}
a:visited {
    color: #f5c05e;
}
a:hover {
    color: #f5c05e;
    text-decoration: none;
}
a:visited:hover {
    color: #FFA1E1;
}
main {
    flex: 1;
    padding-top: 40px;
    width: 100%;
}
h1 {
    font-family: "burghi-variable", sans-serif;
    font-variation-settings: "opsz" 20;
    font-size: 25vw;
    text-align: center;
    background: linear-gradient(90deg, #f5c05e, #FFA1E1, #FF9010);
    background-clip: text; 
    -webkit-background-clip: text;
    color: transparent;
    display: block;
    line-height: 1.1;
    padding: 10px 0;
    margin-bottom: 20px;
}
.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
}
.text-side {
    flex: 0 0 60%; 
}
.p-container {
    color: azure;
    line-height: 1.5; 
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    letter-spacing: 0.01em; 
    max-width: 75ch;
    margin-bottom: 70px;
}
.p-container p {
    margin-bottom: 1.5em;
}
.p-container strong {
    font-weight: 600;
    color: #f9c8c7;
    font-size: 1.1em; 
    letter-spacing: -0.01em;
    display: inline-block; 
    line-height: 1;
}
.image-side {
    flex: 0 0 35%;
    display: flex;
    justify-content: flex-end;
}
.image-container {
    width: 100%;
    max-width: 600px;
    margin-bottom: 70px;
}
.download-section {
    margin-top: 150px;
    margin-bottom: 10px;

}
.btn-download {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #F8A39D;
    color: #FFA1E1;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    opacity: 1;
    
}
.btn-download:hover {
    color: #FFA1E1;
    background: rgba(255, 161, 225, 0.2);
    text-decoration: none;
}
.btn-download:visited {
    color: #FFA1E1;
}
.btn-download:visited:hover {
    color: #FFA1E1;
}
footer {
    padding: 30px 0 40px 0;
}

.footer-copy {
     
    margin-top: 0px;
    margin-bottom: 0px;
    color: #F8A39D;
}

.scroll-top {
    text-decoration: none;
    color: #F8A39D;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
    transition: 0.3s;
}
.scroll-top:hover {
    color: #f5c05e;
}
.scroll-top:visited {
    color: #F8A39D;
}
.scroll-top:visited:hover {
    color: #f5c05e;
}




/* --- MOBIILIOPTIMOINTI --- */
@media screen and (max-width: 900px) {
    body {
        margin-left: 5%;
        margin-right: 5%;
    }
    .content-wrapper { 
        flex-direction: column-reverse; 
        align-items: center; 
    }
    .text-side {
        flex: none !important;
        width: 100% !important;
    }
    .image-side { 
        flex: none !important;
        width: 100% !important;
        justify-content: center; 
        margin-bottom: 20px; 
    }
    .p-container {
        font-size: 1rem;
        text-align: left;
        margin-bottom: 40px;
    }
    .image-container {
        max-width: 80%; 
    }
    
}