html {
    scroll-behavior: smooth;
  }

body{
    margin: 0;
    padding: 0;
    color: rgb(70, 70, 70);
    font-family: Arial;
    overflow-x: hidden;
}

a{
    text-decoration: none;
    color: rgb(70, 70, 70);
    transition: 0.5s;
}

a:hover{
    transition: 0.5s;
    color: #8591a5;
}

.header{
    width: 100vw;
}

.header-navigation{
    height: 10vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-navigation-menu i{
    transition: 0.5s;
}

.header-navigation-menu{
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: 0.5s;
    height: 100%;
    margin-left: 2vw;
    z-index: 1;
}

.header-navigation-menu-active{
    transition: 0.5s;
    transform: rotate(720deg);
    color: whitesmoke;
}

.header-navigation-menu i:hover{
    color: #8591a5;
    transition: 0.5s;
    cursor: pointer;
}

.header-menu{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.7);
    min-height: 50vh;
    width: 100vw;
    z-index: 0;
    opacity: 0;
    transition: 0.5s;
    top: 0;
    position: absolute;
    transform: translateY(-60vh);
    font-weight: bold;
    font-size: 1.3vw;
}

.header-menu-active{
    transition: 0.5s;
    opacity: 1;
    transform: translateY(0vh);
}

.header-menu-item{
    padding: 20px;
}

.header-menu-item a{
    color: whitesmoke;
}

.header-menu-item a:hover{
    color: #8591a5;
}


.header-navigation-logo{
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
    margin-right: 2vw;
}

.header-navigation-logo-img{
    height: 8vh;
    margin-right: 1vw;
}

.webcams-stream{
    display: flex;
    justify-content: center;
    align-items: center;
}

.webcams-stream-live{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 27vw;
    height: 50vh;
}

.webcams-stream-iframe{
    margin-top: 5vh;
    width: 25vw;
    height: 30vh;
    border: none;
    box-shadow: 0px 0px 10px black;
    border-radius: 15px;
}

.news{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    height: auto;
    background-color: white;
    margin-top: 5vh;
}

.news-full-screen{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    position: absolute;
    display: none;
    background-color: whitesmoke;
    color: #25475f;
    z-index: 2;
    top: 0;
}

.news-full-screen-header{
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.news-full-screen-content{
    width: 100%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-full-screen-header i{
    margin-right: 2vw;
    font-size: 40px;
    transition: 0.5s;
}

.news-full-screen-header i:hover{
    color: #8591a5;
    transition: 0.5s;
    cursor: pointer;
}

.news-full-screen-content-image{
    width: 15vw;
    height: 15vw;
    border-radius: 100%;
    margin-left: 5vw;
}

.news-full-screen-content-text{
    width: 70%;
    height: 100%;
    margin-left: 5vw;
    overflow: scroll;
}

.news-message{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50vw;
    height: 30vh;
    margin-top: 5vh;
    color: #25475f;
    font-size: auto;
    opacity: 0;
}

.news-message-image{
    width: 10vw;
    height: 10vw;
    border-radius: 100%;
}

.news-message-text{
    margin-left: 1vw;
    width: 30vw;
    height: 20vh;
    background-color: #c8ccd5;
    padding: 10px;
    border-radius: 15px;
    overflow: hidden;
}

.news-message-text i{
    margin-top: 1vh;
}

.news-message-link, .news-full-screen-content-text-link{
    font-weight: bold;
}

.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: auto;
    background-image: url("../img/bg.jpg");
    background-size:cover;
    background-repeat: no-repeat;
    font-size: 1vw;
    margin-top: 20vh;
    color: whitesmoke;
    font-weight: bold;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10%;
}

.footer-logo img{
    width: 7vw;
}

.footer-text{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
}

.footer-text p{
    padding: 3vw;
    color: rgb(70, 70, 70);
}

.news-message-article{
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: flex-end;
    align-self: center;
    transition: 0.5s;
}

.news-message-article i:hover{
    cursor: pointer;
    color: #8591a5;
    transition: 0.5s;
}

.footer a{
    margin-top: 2vh;
}

.in-view{
    opacity: 1;
    transition: 1s;
}

/* TABLET */
@media only screen and (max-width: 1200px) {
    body{
        background-size: auto 100vh;
        background-position: top center;
    }

    .header-menu{
        width: 100vw;
        font-size: 25px;
    }

    .header-navigation-logo-img{
        height: 6vh;
        margin-right: 1vw;
    }

    .slogan-text{
        line-height: 1;
        font-size: 50px;
        margin-left: 5vw;
    }
    
    .slogan-text-secondline{
        display: flex;
        font-size: 25px;
    }

    .slogan-text-thirdline{
        font-size: 15px;
    }
    
    .webcams-stream{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .webcams-stream-live{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 27vw;
        height: 50vh;
    }
    
    .webcams-stream-iframe{
        margin-top: 1vh;
        width: 50vw;
        height: 30vh;
        border: none;
        box-shadow: 0px 0px 10px black;
    }

    .news{
        margin-top: 0;
    }

    .news-message{
        width: 80vw;
    }

    .news-message-image{
        width: 20vw;
        height: 20vw;
    }
    
    .news-message-text{
        width: 60vw;
    }

    .news-full-screen-content{
        flex-direction: column;
    }

    .news-full-screen-content-image{
        width: 40%;
        height: 40%;
        margin-left: 0vw;
        border-radius: 100%;
    }
    
    .news-full-screen-content-text{
        width: 90%;
        height: 100%;
        margin-left: 0vw;
        overflow: scroll;
        margin-top: 2vh;
    }

    .footer{
        font-size: 15px;
        margin-top: 15vh;
    }
  }

  /* PHONE */
@media only screen and (max-width: 500px) {

    .header-menu{
        width: 100vw;
        font-size: 25px;
    }
    
    .header-navigation-logo-img{
        height: 6vh;
        margin-right: 0vw;
    }

    .webcams-stream{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .webcams-stream-live h3{
        font-size: 11px; 
    }
    
    .webcams-stream-iframe{
        margin-top: 1vh;
        width: 90vw;
        height: 30vh;
        border: none;
        box-shadow: 0px 0px 10px black;
    }
    

    .news{
        margin-top: 0;
    }

    .news-message{
        flex-direction: column;
        width: 90vw;
        height: auto;
        font-size: 15px;
        background-color: #c8ccd5;
        border-radius: 15px;
    }
    
    .news-message-image{
        width: 90vw;
        height: 50vw;
        border-radius: 15px 15px 0px 0px;
    }
    
    .news-message-text{
        width: 85vw;
        height: 30vh;
        margin-left: 0;
        padding: 0;
        border-radius: 0;
    }

	.news-full-screen-content{
        justify-content: flex-start;
    }

    .news-full-screen-content-image{
        width: 40vw;
        height: 40vw;
        margin-left: 0vw;
        border-radius: 100%;
    }

    .news-full-screen-content-text{
        margin-top: 1vh;
		width: 90%;
        height: 60%;
        margin-left: 0vw;
        overflow: scroll;
    }

    .footer{
        font-size: 15px;
        margin-top: 15vh;
        flex-direction: column;
        font-weight: bold;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    
    .footer-logo img{
        width: 20vw;
        margin-top: 2vh;
    }
    
    .footer-text{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        font-weight: bold;
    }
    
    .footer-text p{
        padding: 0vw;
    }
  }