* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body{
    width: 100vw;
    height: 100vh;
    background-color: black;
}

.navbar {
    display: flex;
    width: 100%;
    height: 80px;
    color: white;
    justify-content: center;
    position: fixed;
}

.navbar-container{
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo{
    width: auto;
    height: 75%;
}

.navbar-items {
    display: flex;
    list-style-type: none;
}

.navbar-item {
    padding-left: 20px;
}

.main {
    display: flex;
    flex-direction: column;
    background-image: url("../img/bernth.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    color: white;
}

.title {
    font-size: 4rem;
}

.text {
    font-size: 1.5rem;
}

.btn {
    width: 15%;
    height: 5%;
    border-radius: 10px;
    border: none;
    background-color: rgb(0, 255, 50);
    font-weight: 150%;
    font-size: 1rem;
    margin-top: 10px;
}

.btn:hover {
    background-color: rgb(0, 255, 100);
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: white;
}

.footer-logo{
    width: auto;
    height: 50px;
}

.footer-container{
    display: grid;
    width: 60%; 
    margin-top: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin-bottom: 10px;
}

.footer-item{
    font-size: 1rem;
}

.footer-first-line, .footer-line {
    margin-bottom: 5px;
}

.footer-first-line {
    color: gray;
}

.footer-container .footer-item:nth-child(5){
    font-size: 1.5rem;
}

@media screen and (max-width: 768px){
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-first-line{
        color: white;
        margin-bottom: 10px;
    }
    .title, .text {
        text-align: center;
    }
    .btn {
        width: 30%;
        height: 7%;
        text-align: center;
    }
    .navbar-container{
        width: 95%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .navbar-logo{
        margin-top: 30px;
        height: 50px;
    }
    .navbar-items{
        visibility: hidden;
    }
}
