* {
    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);

}
.content {
    width: 100%;
    height: calc(100% - 80px);
    display: flex;
}
.box1 {
    width: 50%;
    height: 100%;
    padding: 2vw;
}
.box1 img {
    width: 100%;
    height: 85%;
}
.box1 img:hover {
    border: 2px solid black;
}
.box1 h2 {
    margin-top: 10px;
}
.box1 a {
    margin-top: 20px;
    font-size: 15px;
    text-decoration: none;
    color:  blue;
}
.box2 {
    width: 50%;
    height: 100%;
    padding: 2vw;
}
.box2 h2 {
    margin-top: 20px;
}
.box2 p {
    margin-top: 20px;
    font-size: 2vw;
    line-height: 5vh;
}




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;
}


@media (max-width:800px) {
    .nav {
        padding: 0 4vw;
        width: 100%;
        height: 60px;
    }.content {
        width: 100%;
        height: calc(100% - 60px);
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .box1 {
        width: 100%;
        height: 50%;
        padding: 5vw;
    }
    .box2 {
        width: 100%;
        height: 50%;
        padding: 5vw;
    }
    .box1 img {
        width: 100%;
        height: 80%;
    }
    .box1 p {
        font-size: 3vw;
        line-height: 3.2vh;
    }
    .box2 p {
    margin-top: 10px;
    font-size: 2.8vw;
    line-height: 3vh;

     }
   

     footer {
        width: 100%;
        height: 60px;
    }
    footer p {
        font-size: 3.4vw;
    }
    .login a {
        font-size: 3.4vw;
    }
}