:root {
    --overlay-color: rgba(0, 0, 0, 0.5);
    --def-color: rgb(82, 52, 36);
    --vox-color: #79a8ce;
    --secondary-color: #003852;
    --background-col: black;
    --highlight-color: #00fafe;
}

hr {
    color: var(--highlight-color);
}

body {
    background-color: var(--background-col);
    color: white;
    font-family: "Audiowide", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.page2 {
    background-image: url('./phones.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.page3 {
    background-image: url('./bg.png');
    background-size: 100%;
    background-position-y: 50px;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.sharetech {
    font-family: 'ShareTech', sans-serif;
}

h1 {
    color: var(--vox-color);
    font-family: "Audiowide", sans-serif;
    font-size: 45px;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding-top: 50px;
}

.overlay {
    background-color: var(--overlay-color);
    width: 100vw;
    border-radius: 0px;
}

/* menu */

.dropdown {
    position: relative;
    margin: 0px;
    font-size: 25px;
    display: block;
    float: left;
}

.menulink {
    font-family: "Audiowide", sans-serif;
    position: relative;
    display: block;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    color: #00fafe;
    cursor: pointer;
    width: 200px;
}

#menudropdown {
    z-index: 2;
    display: none;
    position: absolute;
    min-width: 160px;
    background-color: var(--secondary-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media (min-width: 769px) {
    .header {
        font-size: 55px;
    }

    .comingsoon {
        font-size: 50px;
    }

    .mainmenu {
        display: flex;
        flex-direction: row;
        background-color: var(--secondary-color);
        padding: 0px;
        margin-left: -40px;
        margin-top: -70px;
        color: white;
        width: 100vw;
        justify-content: center;
        align-items: center;
    }

    .security {
        width: 100%;
        max-width: 700px;
        height: auto;
    }

    .mobilemenu {
        display: none;
    }

    .text {
        font-size: 35px;
    }

    .flex-bar {
        padding: 10px;
        width: 70%;
        height: 20px;
        text-align: center;
        display: flex;
        flex-direction: row;
        justify-content: center;
        position: relative;
    }

    .footer {
        font-size: 17px;
    }

    .footertext {
        list-style: none;
        width: 100%;
        font-size: 13px;
        display: flex;
        flex-direction: row;
        justify-content: left;
        margin-top: 50px;
    }

}

.flex-item {
    width: 100%;
    text-align: center;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .container {
        padding-left: 0px;
    }

    .footer {
        font-size: 12px;
    }

    .header {
        font-size: 40px;
    }

    .mainmenu {
        display: none;
    }

    .mobilemenu {
        display: flex;
        flex-direction: row;
        background-color: var(--secondary-color);
        padding: 0px;
        margin-left: 0px;
        margin-top: -70px;
        color: black;
        width: 100vw;
        justify-content: center;
    }

    .product {
        width: 100%;
    }

    .menulink {
        font-size: 14px;
        width: 100px;
    }

    .security {
        width: 120%;
        height: auto;
        margin-left: -10%;
    }

    .comingsoon {
        font-size: 30px;
    }

    .footertext {
        list-style: none;
        width: 100%;
        font-size: 10px;
        display: flex;
        flex-direction: row;
        justify-content: left;
        margin-top: 50px;
    }
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 2px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    border-radius: 5px;
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.icon {
    height: 90px;
    margin-top: -60px;
    margin-right: 20px;
    margin-left: 20px;
}

.button {
    margin-top: -5px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 5px;
    width: 75px;
    background-color: #cecfc7;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    height: 100%;
    transition: 0.5s;
}

.button:hover {
    background-color: rgb(170, 170, 170);
    transition: 0.5s;
}

a {
    text-decoration: underline;
    color: white;
}

a:hover {
    text-decoration: none;
}

#info2 {
    display: none;
}

.margin20 {
    margin: 20px;
}

.movein {
    position: relative;
    top: 0px;
    animation: move 1.5s;
    -moz-animation: move 1.5s;
    -webkit-animation: move 1.5s;
}

@keyframes move {
    from {
        top: 500px;
    }

    to {
        top: 0px;
    }
}

.fadein {
    scale: 1;
    opacity: 1;
    animation: size 1s;
    -moz-animation: size 1s;
    -webkit-animation: size 1s;
}

.scroll-wrapper {
    position: relative;
    top: 0px;
}

#scrollin {
    opacity: 0;
    scale: 0;
    transition: all 2s;
}

#scrollin.anim {
    opacity: 1;
    scale: 1;
}

@keyframes size {
    from {
        scale: 2;
        opacity: 0;
    }

    to {
        scale: 1;
        opacity: 1;
    }
}

.text li {
    margin: 20px 0px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding-left: 0px;
}

.griditem {
    width: 30%;
    height: 30%;
    margin: 5px;
}