@font-face {
    font-family: 'mybebas';
    src: url('./fonts/bebasneue-regular-webfont.woff2') format('woff2'),
    url('./fonts/bebasneue-regular-webfont.woff') format('woff'),
    url('./fonts/BebasNeue-Regular.ttf') format('truetype');
    /*font-weight: normal;
    font-style: normal;*/

}



html, body{
    width:100%;
    margin:0px;
    padding:0px;
    background-color: white;
}

/*LINKS*/
.links_container {
    padding: 0;
    margin: 0px;
    font-family:'mybebas';
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%,150px);
    
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content:center;
    animation: hyperlink 4s 1;
}
a {
    outline: none;
    text-decoration: none;
    font-size:1.5vw;
    text-align: center;
    position: relative;
    color: black;

    width: 200px;
}

a:hover {
    opacity:50%;
}
a:link {
    color: black;
    font-family: 'mybebas';
}
@media only screen and (max-width: 767px) {
    a {
        font-size:3vw;
        width: 100px;
    }
    .links_container{
        transform: translate(-50%,75px);
    }
}
@keyframes hyperlink {
    0%{
        opacity:0%;
    }
    85%{
        opacity:0%;
    }
    100%{
        opacity:100%;
    }

}





/*TEXT*/
.textcontainer{
    padding: 0;
    margin: 0px;
    font-family:'mybebas';
    text-align: center;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 100%;
}

.textcontainer span{
    text-transform: uppercase;
    display: block;
}

.welcome_txt{
    background-color: white;
    font-size:100px;
    color:black;
    font-weight: 300;
    letter-spacing: 25px;
    margin-bottom: 0px;
    width:100%;
    position: relative;
    animation: text 1s 1;
    
}

.to_txt{
    font-size: 75px;
    color:black;
    font-weight: 300;
    letter-spacing: 15px;
}


@media only screen and (min-width: 767px) {
    @keyframes text {
        0%{
            color:black;
            margin-bottom: -109px;
            letter-spacing: -40px;
        }
        60%{
            letter-spacing:25px;
            margin-bottom: -109px;
        }
        85%{
            letter-spacing:25px;
            margin-bottom: -109px;
        }
        100%{
            letter-spacing:8px;
            letter-spacing:25px;
        }

    }
}
@media only screen and (max-width: 767px) {

    .textcontainer {
        left: 52%;
    }
    .welcome_txt {
        font-size:50px;
        font-weight: 575;

    }
    .to_txt{
        font-size: 35px;
        font-weight: 575;
    }

    @keyframes text {
        0%{
            color:black;
            margin-bottom: -59px;
            letter-spacing: -20px;
        }
        60%{
            letter-spacing:25px;
            margin-bottom: -59px;
        }
        85%{
            letter-spacing:25px;
            margin-bottom: -59px;
        }
        100%{
            letter-spacing:8px;
            letter-spacing:25px;
        }
    
    }
}

/*IMAGES*/
.imagecontainer{
    padding: 0;
    margin: 0;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 60vh;
    display: flex;
    flex-direction: row;
    justify-content:center;
    
}
.imagecontainer img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width:600px;
    height:auto;
    /*width: 80%;*/

    
}

.image1{
    opacity:100%;
    background-color: white;
    animation: image 2.5s 1;
    
}

@media only screen and (max-width: 767px) {
    .imagecontainer img {
        width: 350px;
        height: auto;
    }
}


@keyframes image {
    0%{
        opacity:0%;
    }

    80%{
        opacity:0%;
    }
    100%{
        opacity:100%;
    }

}      
