﻿
body {
    background-color: #000000;
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
}

a {
    color: white;
}

    a:hover {
        color: white
    }

.loader {
    border: 0.6vw solid #f3f3f3;
    border-radius: 50%;
    border-top: 0.6vw solid #3498db;
    width: 4vw;
    margin: 0 auto;
    height: 4vw;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.logo {
    width: 50%;
}

.logo2 {
    width: 30%;
}

.logo3 {
    width: 40%;
}

.softwarespot {
    position: fixed;
    transform: translateX(100vw);
    z-index: 1000;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    background-color: black;
}

.softstart {
    animation: softwarespotin 2s;
}

.mss {
    position: fixed;
    transform: translateX(100vw);
    z-index: 1000;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    background-color: black;
}

.mssstart {
    animation: softwarespotin 2s forwards;
}

.gio {
    position: fixed;
    transform: translateX(100vw);
    z-index: 1000;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    background-color: black;
}

.giostart {
    animation: softwarespotin 2s forwards;
}


@keyframes softwarespotin {
    0% {
        transform: translateX(100vw)
    }

    99% {
        transform: translateX(0vw)
    }

    100% {
        transform: translateX(100vw)
    }
}

.wrapper {
    position: absolute;
    width: 100vw;
    height: 100vh;
}

.bgvideo {
    filter: contrast(1.2);
    opacity: 0.6;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    color: white;
}
.header2 {
    text-align: center;
    font-family: 'Roboto Slab', serif;
    font-size: min(6vw,4rem);
}
.header {
    text-align:center;
    font-family: 'Roboto Slab', serif;
    font-size: min(6vw,6rem);
}

.headerunderline {
    font-size: min(5vw,4rem);
    font-weight: 200;
}

.companycontainer {
    width: 100vw;
    position: absolute;
    bottom: 40px;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    gap: 5rem;
}

.company {
    font-size: min(4vw,3rem);
}

.small {
    font-family: 'Roboto Slab', serif;
    font-weight: 200;
}

.button {
    cursor: pointer;
    background-color: rgb(255,255,255,0.30);
    padding: 0.5rem;
    border-radius: 10px;
}

.stripe {
    height: 10px;
    width: 90%;
    position: absolute;
    right: 5%;
    left: 5%;
    bottom: 20px;
    border-bottom: 2px solid white;
}

.absoluteabstand {
    height: 100vh;
    width: 100vw;
}

.footerwrapper {
    background-color: rgb(0 0 3);
    width: 100vw;
    height: 30rem;
    padding: 4rem;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    flex-direction: column;
}

.footerpic {
    width: 35rem;
}

.footertext {
    font-family: 'Roboto Slab', serif;
    color: white;
    text-align: center;
}


