body {
    background: linear-gradient(133.48deg, #000000 -0.43%, #008f5d 231.84%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    overflow: hidden; 
}



* {
    color: white;
    font-family: "Montserrat", sans-serif;
}

header {
    margin: 0;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

header nav{
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-right: 100px;
    border-bottom: 1px solid white;
    width: 450px;
    padding: 10px;
    font-size: 15pt;
}

header nav a {
    user-select: none;
    text-decoration: none;
    transition: 200ms ease-in-out;
}

header nav a:hover{
    color: #008f5d;
    transform: translateY(-10%);
}

.textContainer {
    display: flex;
    flex-direction: column;
    gap: 60px;
    justify-content: center;
    align-items: flex-start;
    margin: 70px;
    margin-left: 100px;
}

main {
    display: flex;
    justify-content: space-between;
}


 span#bomdia {
    font-weight: bold;
}


@keyframes FadeInJump{
    from {
        opacity: 0;
        transform: translateY(15%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#welcome{
    user-select: none;
    text-indent: 0px;
    margin: 0;
    width: 800px;
    height: 171px;
    font-family: 'Montserrat';
    font-size: 75pt;
    line-height: 117px;
    animation: FadeIn forwards 800ms ease-in-out;
}

#paraphrase {
    user-select: none;
    text-indent: 10px;
    animation: FadeIn forwards 2s ease-in-out;
}

.Autor-img {   
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-right: 160px;
}

@media screen and (min-width: 1366px){
    .Autor-img {   
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-right: 160px;
    margin-top: 5px;
}


.textContainer {
    display: flex;
    flex-direction: column;
    gap: 60px;
    justify-content: center;
    align-items: flex-start;
    margin: 4 0px;
    margin-left: 100px;
}

}

#fotodolevi{
    margin-top: 50px;
    user-select: none;
    margin-bottom: 20px;
    animation: FadeInJump 1s forwards ease-in-out;
}

.Autor-img p {
    width: 300px;
    font-size: 15pt;
    text-align: center;
    padding-bottom:  20px;
    border-bottom: 1px solid white;
}

.socialIcons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    animation: FadeIn forwards 3s ease-in-out;
}

.socialIcons img {
    user-select: none;
    scale: 1.0;
    transition: 200ms ease-in-out;
}

.socialIcons img:hover {
    transform: translateY(-10%);
}

.buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-top: 100px;
    margin-left: 100px;
}



#btn1 {
    user-select: none;
    background-color: rgb(13, 31, 27);
    padding: 19px 32px 19px 32px;
    border-radius: 16px;
    text-decoration: none;
    transition: 200ms ease-in-out;
    animation: FadeIn forwards 2s ease-in-out;
    border: 2px solid white;
}

#btn2 {
    user-select: none;
    border: 2px white solid;
    padding: 17px 22px 17px 22px;
    border-radius: 16px;
    text-decoration: none;
    transition: 200ms ease-in-out;
    animation: FadeIn forwards 2s ease-in-out;
}

#btn1:hover {
    background-color: rgb(75, 72, 72);
    transform: translateY(-4%);
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.205);
}

#btn2:hover {
    background-color: rgba(71, 69, 69, 0.507);
    transform: translateY(-4%);
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.205);
}


@keyframes FadeIn{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes ImgContainerFade {
    from {
        opacity: 0;
        transform: translatey(10%)
    }
    to {
        opacity: 1;
        transform: translateX(0%);
    }
}
















