* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body {
    width: 100%;
    height: 100%;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgba(128, 128, 128, 0.39);
}
.container {
    width: 100%;
    height: 100%;
}
.nav {
    width: 100%;
    height: 80px;
    background-color: black;
    padding: 0vw 2vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav h2 {
    color: rgb(127, 208, 255);
}

.pages {
    display: flex;
    gap: 20px;
}
.pages a {
    text-decoration: none;
    color: white;
    font-size: 15px;
}
.pages a:hover {
    color: rgb(127, 208, 255);

}
.pages i {
    font-size: 20px;
    font-weight: bold;
    color: white;
    display: none;
}
.links {
    margin-top: 8px;
    margin-bottom: 8px;
    padding: 0 2vw;
    width: 100%;
    height: 40px;
    background-color:  rgb(127, 208, 255);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.links i {
    display: none;
    color: black;
    font-size: 20px;
    font-weight: bold;
}
.ld {
    width: 100px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ld:hover {
       border: 1px solid  rgba(128, 128, 128, 0.726);
       border-radius: 5px;

}
.links a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: bold;
}
.content {
    width: 100%;
    height: calc(100% - 80px);
    text-align: center;
    padding: 4vw;
}
.content h2 {
    font-size: 3vw;
    margin-bottom: 10px;
}
.content h3 {
    font-size: 2vw;
    margin-bottom: 10px;
}
.content p {
    font-size: 2.2vw;
    line-height: 6vh;
}

footer {
    width: 100%;
    height: 70px;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2vw;

}
footer p {
    font-size: 18px;
    color: white;

}
footer span {
    color:  rgb(127, 208, 255);
}
footer a {
    text-decoration: none;
    color: white;
    font-size: 15px;
}
footer a:hover {
    color:  rgb(127, 208, 255);
}

.pages.active {
  display: block;
}
.icon {
    font-size: 18px;
    color: white;
    display: none;
}


@media (max-width:700px) {
    .nav {
        padding: 0 4vw;
        width: 100%;
        height: 60px;
    }
    .links {
        width: 100%;
        height: 30px;
        display: flex;
        justify-content: flex-start;
    }
    .ld  {
        display: none;
    }
    .links i {
        display: block;
    }
    .content {
        width: 100%;
        height: calc(100% - 60px);
    }
    .content h2 {
        font-size: 5.2vw;
    }
    .content h3 {
        font-size: 3.3vw;
    }
    .content p {
        font-size: 3.2vw;
    }
    .icon {
        display: block;
    }
    .pages {
        flex-direction: column;
        top: 60px;
        width: 250px;
        height: 100vh;
        background-color: black;
        color: white;
        right: -250px;
        position: fixed;
        text-align: center;
        padding: 20px;
         transition: all 0.3s ease;

    }
    .pages a {
        font-size: 22px;
        font-weight: bold;
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .pages.active{
        right: 0px;
    }


    footer {
        width: 100%;
        height: 60px;
    }
    footer p {
        font-size: 3.4vw;
    }
    .login a {
        font-size: 3.4vw;
    }
}






