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

body {
    background: #303030;
    color: white;
}

.navbar-name {
    font-size: 25px;
    font-weight: 900;
    margin: 20px;
}

/* Style the main website */

.container {
    padding-top: 100px;
    margin: 0 auto;
    text-align: center;
}

.header-text {
    font-size: 35px;
    font-weight: 900;
}

/* Style om meg delen */
.om-meg {
    max-width: 750px;
    margin: 20px auto;
    display: flex;
}

.bilde {
    width: 100px;
    height: auto;
}

/* Style mine linker */
.mine-linker {
    list-style: none;
    background: white;
    padding: 10px;
    width: 50%;
    margin: 0 auto;
    border-radius: 20px;
    margin-top: 20px;
}

.mine-linker a {
    text-decoration: none;
    color: black;
}

.mine-linker:hover {
    transform: scale(1.1);
    transition: 1s;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
}

/* Style the buttons */
.button {
    background: white;
    padding: 10px;
    width: 25%;
    margin: 0 auto;
    border-radius: 20px;
    margin-top: 10px;
}

.button li {
    list-style: none;
}

.button li a {
    text-decoration: none;
    color: black;
}

.button:hover {
    transform: scale(1.1);
    transition: 1s;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
}

/* Style coming soon siden */
.coming-soon {
    padding-top: 100px;
    width: 100%;
    height: 100vh;
    background: rgb(63,87,63);
    background: linear-gradient(90deg, rgba(63,87,63,1) 0%, rgba(157,141,43,1) 51%, rgba(177,84,84,1) 100%);
}

.coming-soon_text {
    font-size: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

/* Style the navbar */

.navbar {
    display: flex;
    color: white;
    background: #252525;
    justify-content: space-between;
    padding: 10px 10px;
    align-items: center;
    position: fixed;
    width: 100%;
}

.navbar-links ul {
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-links li {
    list-style: none;
}

.navbar-links li a {
    text-decoration: none;
    color: white;
    padding: 20px;
    display: block;
}

.navbar-links li:hover {
    background: #3b3b3b;
}

.toggle-button {
    position: absolute;
    top: 30px;
    right: 30px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30;
    height: 20px;
}

.toggle-button .bar {
    background: white;
    height: 3px;
    width: 100%;
    border-radius: 20px;
}

@media (max-width: 600px) {
    .toggle-button {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar-links li {
        text-align: center;
    }

    .navbar-links li a {
        padding: 10px;
    }

    .navbar-links.active {
        display: flex;
    }
}