/*
Find my fit was made by Vendula Procházková and Dominik Beran
*/

body {
    background-color: black;
    margin: 0;
    height: 100%;
}

.top-bar {
    /* div container for the bar at the top*/
    margin: 0;
    width: 100%;
    height: 8vh;
    /*background-color: red;*/
    /*for debug purpouses*/
    align-items: center;
    display: flex;
}

.top-bar-image {
    /*div for the image of the bar at the top*/
    width: 100%;
    height: 60%;
    background-color: #e63da5;
    /*debug; also serves as the background colour, were the image not to load.*/
    background-image: url(/img/strip-top.png);
    background-position: center;
    border: white 2px solid;
    border-left: none;
    border-right: none;
    /* remove the white line at the left and right. there's probably a better way to do this.*/
}

.main-content {
    width: 100%;
    margin: 0;
}

.name-socials {
    width: 100%;
    height: 20vh;
    background-color: rgba(255, 0, 0, 0);
}

.name {
    background-color: rgba(0, 128, 0, 0);
    height: 70%;
    width: 100%;
}

.name-text {
    margin: 0;
    height: 4vh;
    font-size: 5vh;
    font-family: headerFont;
    color:rgba(255, 255, 255, 0);
}

#name1{
    animation: fadeText 700ms 0s 1 forwards;
}
#name2{
    animation: fadeText 700ms 200ms 1 forwards;
}
#name3{
    animation: fadeText 700ms 400ms 1 forwards;
}

@keyframes fadeText {
    from {color:rgba(255, 255, 255, 0);}
    to {color:rgb(255, 255, 255);}
}

.socials {
    height: 30%;
    width: 20%;
    display:flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: rgba(255, 255, 0, 0);
}

.social-logo{
    height:3.5vh;

}

@font-face {
    /*custom downloaded font for the name of the website*/
    font-family: headerFont;
    src: url(/horizon.otf);
}


.bot-bar {
    /* div container for the bar at the top*/
    margin: 0;
    width: 100%;
    height: 8vh;
    /*background-color: red;*/
    /*for debug purpouses*/
    align-items: center;
    display: flex;
    bottom: 0%;
    position:absolute;
}

.bot-bar-image {
    /*div for the image of the bar at the top*/
    width: 100%;
    height: 60%;
    background-color: #e63da5;
    /*debug; also serves as the background colour, were the image not to load.*/
    background-image: url(/img/strip-top.png);
    background-position: center;
    border: white 2px solid;
    border-left: none;
    border-right: none;
    /* remove the white line at the left and right. there's probably a better way to do this.*/
}