@import url('https://fonts.googleapis.com/css2?family=Albert+Sans&display=swap');

body {
    width: 100%;
    margin: 0;
    font-family: Albert Sans, sans;
    box-sizing: border-box;
    overflow-x: hidden;
    background-image: linear-gradient(25deg, black, rgb(0, 19, 20), black);
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    flex-direction: column;
    align-items: center;

    color: #fff;
}

footer {
    position: fixed;
    bottom: 10px;
    left: 10px;
    color: #444;
}

#bigheader {
    margin-top: 80px;
    font-size: 100px;
}

#conmtent {
    width: 80%;
    height: 80%;
    display: grid;
    gap: 20px;
    margin-top: 30px;
    /* border: 4px solid #fff;
    border-radius: 6px; */

    grid-template-columns: 50% 50%;
    grid-row: auto auto;
    grid-column-gap: 0;
    grid-row-gap: 0;

    margin-bottom: 5vh!important;
}


.coolblenderfeature {
    width: 100%;
    height: 100%;
    border: 1.5px solid #fff;
    user-select: none;
    position: relative;
    /* pointer-events: none; */

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    
}

.coolblenderfeature:nth-child(1) {
    border-top-left-radius: 6px;
    /* border-top: 2px solid #fff;
    border-left: 2px solid #fff; */
}
.coolblenderfeature:nth-child(2) {
    border-top-right-radius: 6px;
    /* border-top: 2px solid #fff;
    border-right: 2px solid #fff; */
}
.coolblenderfeature:nth-child(3) {
    border-bottom-left-radius: 6px;
    /* border-bottom: 2px solid #fff;
    border-left: 2px solid #fff; */
}
.coolblenderfeature:nth-child(4) {
    border-bottom-right-radius: 6px;
    /* border-bottom: 2px solid #fff;
    border-right: 2px solid #fff; */
}

.cover {
    width: 100%;
    height: 100%;
    transition-duration: 300ms;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 300%;
    color: rgba(0,0,0,0);
    position: absolute;
    z-index: 10;

    text-align: center;
}

.cover:hover {
    background-color: rgba(255,255,255,0.7);
    color: #000;
    cursor: pointer;    
}

.infotextheader {
    font-size: 250%;
    flex-grow: 1;
    margin-top: 5%;
}

.infotextinfo {
    font-size: 100%;
    flex-grow: 1;
    width: 80%;
}

.coolblenderfeature > img {
    width: 80%;
    /* position: absolute;
    bottom: 10%; */
    margin-bottom: 5%;
}

svg {
    fill: #fff;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 15px;
    left: 15px;
    transition-duration: 200ms;
}

svg:hover {
    transform: scale(1.08);
    cursor: pointer;
}

svg:active {
    transform: translateY(4px);
}

#moreconmtent {
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    align-items: center;

    margin-bottom: 5vh!important;
}

/* #conmtent {
    width: 80%;
    height: 80%;
    display: grid;
    gap: 20px;
    margin-top: 30px;

    grid-template-columns: 50% 50%;
    grid-row: auto auto;
    grid-column-gap: 0;
    grid-row-gap: 0;

    margin-bottom: 5vh!important;
} */


.mroedatatext {
    font-size: 150%;
    margin-top: 5%;
    /* width: 80%; */
}

#moreconmtent > img {
    margin-top: 5%;
    width: 100%;
}