/* This Section of CSS is for general styles that can be applied to everything */

:root {
  font-size: 20px;
  font-family: "Nunito", sans-serif;

  --black: #0b0c10;
  --gray: #1f2833;
  --lightgray: #c5c6c7;
  --cyan: #66fcf1;
  --darkcyan: #45a29e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: border-box;
}

body {
  background-color: var(--lightgray);
}

/* Scroll Bar */

body::-webkit-scrollbar {
  width: 14px;               /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: var(--black);        /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: var(--cyan);    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
  border: 3px solid var(--black);  /* creates padding around scroll thumb */
}


/* Everything Below this until You reach the next comment will
  Be the CSS for the Navbar */

nav {
  overflow: hidden;
  background-color: var(--black);
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

nav a {
  color: var(--cyan);
  text-align: center;
  padding: 14px 25px;
  text-decoration: none;
  font-size: 17px;
}

nav a:hover {
  background-color: var(--darkcyan);
  color: #fff;
}

nav a.active {
  background-color: var(--cyan);
  color: var(--black);
  font-weight: 600;
}


/* CSS For Main Content */

.group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.section {
  margin: 20px 10px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 5px 4px 15px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


.section1 {

  background-color: #1f2833;
}

.section2 {
  background-color: var(--cyan);
}

.section1>.title, .section1>.content, .sep{
  color: var(--cyan)
}

.section2>.title, .section2>.content {
  color: var(--black)
}

.content {
  margin: 10px;
  padding: 15px;
}

.sep {
  text-align: center;
  margin: 15px 10px 35px;
  font-size: 25px;
}

.about>p {
  margin: 20px 5px 5px;
  display:flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.main {
  height: calc(49em - 30vw);
}

.title {
  text-align: center;
}
.virus {
  float:left;
  margin: -3.7rem 0 -5px 0;
  padding: 5px 30px;
  border-radius: 15%;
}

.main>h1 {
  font-size: 2.5em;
}

.norton, .mcafee {
  width: 10%;
  min-width: 200px;
}

.norton {
  float: left;
  margin: -5vw 5px -5px 5px;
  padding: 50px 30px 20px;
  border-radius: 15%;
}

/* Download Button */
.download {
  background:    #0b0c10;
  background:    linear-gradient(#0b0c10, #1f2833);
  border-radius: 11px;
  box-shadow:    10px 10px 10px #1f2833;
  padding:       30px 75px;
  color:         #66fcf1;
  display:       inline-block;
  font:          normal bold 36px/1 "Nunito", sans-serif;
  text-align:    center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.download-link {
  color: #66fcf1;
  text-decoration: none;
}

/* Pop Up CSS */

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 200ms ease-in-out;
  border: 1px solid black;
  border-radius: 10px;
  z-index: 10;
  background-color: white;
  width: 500px;
  max-width: 80%;
}

.modal.active {
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.modal-header .title {
  font-size: 1.25rem;
  font-weight: bold;
}

.modal-header .close-button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-size: 1.25rem;
  font-weight: bold;
}

.modal-body {
  padding: 10px 15px;
}

#overlay {
  position: fixed;
  opacity: 0;
  transition: 200ms ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .5);
  pointer-events: none;
}

#overlay.active {
  opacity: 1;
  pointer-events: all;
}

#radio {
  padding-right: 10px;
}