:root {
    --main: #fea620;
}

body {
    background-color: var(--main);
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.wrapper {
    position: relative;
    margin: 150px 0;
    width: 100%;
}

.container {
    margin: 0 auto;
    width: 400px;
}

.balken {
    position: absolute;
    background-color: var(--main);
    height: 50px;
    width: 340px;
    margin-top: 125px;
}

.title {
    position: absolute;
    width: 400px;
    font-size: 28px;
    font-weight: 1200;
    font-style: italic;
    font-family: "Uni Sans Demo", sans-serif;
    text-align: center;
    margin-top: 128px;

    animation: slide 2s forwards;
}

.slogan {
    position: absolute;
    width: 400px;
    font-weight: 400;
    font-family: "Source Sans Pro", sans-serif;
    text-align: center;
    margin-top: 155px;

    animation: slide 2s forwards;
    animation-delay: 1s;
}

.logo {
    position: absolute;
    height: 300px;
    width: 400px;
}

.icon-container {
    position: absolute;
    display: flex;
    justify-content: center;
    width: 400px;
    margin-top: 205px;
}

.icon {
    size: 10px;
    font-size: 10px;
    height: 40px;
    width: 40px;
    padding-right: 10px;
}

.container i {
    position: absolute;
    margin-top: 210px;
    margin-left: 80px;
    font-size: 32px;
    animation: arrow-anim 2s;
    animation-delay: 5s;
    animation-iteration-count: infinite;
}

.scout {
    height: 39px;
    width: 39px;

    background-color: white;
    border-radius: 20px;

    font-size: 24px;
    font-weight: 600;

    text-align: center;
    text-decoration: none;

    color: var(--main);

    animation: icon 2s forwards;
    animation-delay: 4s;
}

.scout p {
    margin-top: 7px;
}

.one {
    animation: icon 2s forwards;
    animation-delay: 2s;
}

.two {
    animation: icon 2s forwards;
    animation-delay: 3s;
}

@keyframes icon {
    0% {
        transform: translateY(100%);
    }
    100% {
        opacity: 100;
    }
}

@keyframes arrow-anim {
    50% {
        opacity: 100;
        transform: translateX(-80%);
    }
}

@keyframes slide {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0%);
        opacity: 100;
    }
}
