@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@font-face{font-family:monument extended;font-style:normal;font-weight:400;src:local('Monument Extended'),url(https://fonts.cdnfonts.com/s/19595/MonumentExtended-Regular.woff) format('woff')}
@font-face{font-family:monument extended;font-style:normal;font-weight:800;src:local('Monument Extended'),url(https://fonts.cdnfonts.com/s/19595/MonumentExtended-Ultrabold.woff) format('woff')}
h1 {
    text-align: center;
    font-family: Monument Extended;
    font-weight: lighter;
    font-size: 52pt;
    margin-bottom: 0px;
    margin-top: 25px;
    color: white;
    -webkit-text-stroke: 0.2vw #000000;
}
body {
    background: linear-gradient(-45deg, rgba(50,30,64,1) 0%, rgba(226,63,88,1) 100%);
    font-family: Montserrat;
    color: black;   
    margin-left: 0;
    margin-right: 0;
}
a:visited {
    color: blue;
    background-color: transparent;
    text-decoration: none;
}
a:active {
    color:blue;
    background-color: transparent;
    text-decoration: underline;
}
a:link {
    color: black;
    background-color: transparent;
    text-decoration: underline;
}
.video-container {
    position: fixed;
    overflow: hidden;
    top: 50%;
    left: 50%;
    scale: 1;
    transform: translate(-50%,-50%);
    width: auto;
    height: auto;
    transition: all .01s ease-in-out; 
    z-index: -5;
    min-width: 100%; 
    min-height: 100%; 
  }
.sections {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr;
}
.cp {
    background-color: rgba(255, 255, 255, 0.75);
    background-blend-mode: multiply;
    font-size: 20pt;
    padding: 10px;
    grid-row-end: span 2;
    list-style-type: none;
}
.download {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1vw;
    background-color: rgba(95, 95, 95, 0.5);
    background-blend-mode: multiply;
    height: 100%;
    width: 100%;
    grid-column: 2;
    justify-items: center;
    padding-bottom: 1vw;
    box-sizing: border-box;
}
.iframe {
    z-index: 5;
    justify-content: flex-end;
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    gap: 1vw;
    background-color: gray;
    height: fit-content;
    border-radius: 5%;
    width: 20vw;
    grid-column: 2;
    aspect-ratio: 16/9;
    border: none;
    
}
.downloadbutton {
    font-family: Montserrat;
    font-weight: 600;
    display: flex;
    grid-row: 2;
    width: 20vw;
    height: 10vh;
    font-size: 2vw;
    background: linear-gradient(45deg, rgba(163,232,143,1) 0%, rgba(0,255,54,1) 100%);
    right: 1;
    border: none;
    cursor: pointer;
    box-shadow: rgba(green, 0.5) 0px 0px 20px 0px;
    border-radius: 1.5vw;
    align-items:center;
    justify-content:center;
    color: black;
    transition: all 0.2s ease-in-out;
}
.downloadbutton:hover {
    color: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 15px rgb(142, 255, 110);
}
.packpng {
    width: 11.5vw;
    grid-row: 1;
    align-self: center;
    padding-top: 1vw;
}

@media (max-width: 600px) {
    .sections {
        display: flex;
        flex-direction: column;
    }
    .cp {
        grid-row: 1;
        height: 100%;
        font-size: 17pt;
    }
    .download {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .download iframe {
        grid-area: 1 / 2 / 2 / 3;
        border-radius: 15px;
        width: 90%;
        height: 90%;
        aspect-ratio: 16/9;
    }
    .download button {
        grid-area: 2 / 2 / 3 / 3;
        width: 90%;
        height: 10vh;
        border-radius: 15px;
    }
    .download img {
        border-radius: 15px;
        width: 90%;
        grid-area: 1 / 1 / 3 / 2;
    }
    h1 {
        margin-top: 20vh;
        font-size: 26pt;
    }
}