/* BANNER */

.banner {
    width: 100%;
    height: 50vmin;
    position: relative;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERVIEW */

.ov-name {
    display: flex;
    gap: 2vmin;
    align-items: center;
    margin-bottom: 1vmin;
    position: relative;
}

.ov-name-price {
    user-select: none;
    font-size: 2vmin;
    font-family: var(--albert-sans);
    position: absolute;
    top: 4vmin;
    right: 4vmin;
    padding: 1vmin;
    border-radius: 0.5vmin;
    font-weight: bold;
    background-color: #ffffff46;
}

.ov-name img {
    width: 10vmin;
    height: 10vmin;
}

.ov-name h2 {
    font-size: 7vmin;
}

.ov-headline {
    color: var(--sec-text-color);
    font-size: 4vmin;
    margin-bottom: 2vmin;
}

.ov-want {
    font-size: 5vmin;
    margin-bottom: 4vmin;
    text-align: center;
}

#overview p span,
#overview p b {
    color: var(--cool-orange);
}

.ov-short-desc {
    font-size: 3vmin;
}

#overview ul {
    margin-left: 8vmin;
}

#overview ul li {
    margin: 1vmin 0;
    color: var(--sec-text-color);
}

.new-feature {
    text-align: center;
    font-size: 3vmin;
}

.ov-link {
    margin: 4vmin 0 0;
    color: var(--cool-green);
    font-size: 3vmin;
}

/* DOWNLOAD */

.dl-option {
    text-align: center;
}

.dl-option:not(:first-of-type) {
    margin-top: 3vmin;
}

/* WIKI */

.wk-part {
    margin: 3vmin 0;
}

.wk-title {
    font-size: 4vmin;
    font-weight: bold;
    margin-bottom: 3vmin;
}

.wk-step {
    font-size: 3vmin;
}

.wk-step-sec {
    color: var(--sec-text-color);
}

.wk-step span {
    color: var(--cool-green);
}

.code {
    font-family: 'Source Code Pro', monospace;
    padding: 1vmin;
    margin: 2vmin 0 0;
    font-size: 2.25vmin;
    display: block;
    background-color: rgb(36, 37, 39);
    border-radius: 2px;
}

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

	iframe{
		width: 80%;
		height: 45%;
	}
	
}