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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

.middle{
    font-family: Avenir, Arial, Helvetica, sans-serif;
    display: flex;
    /*justify-content: center;
    align-items: center;*/
    flex-direction: column;
    margin-left: 5%;
    margin-top: 20px;
    width: 100%;
    height: 600px;
    line-height: 1.2;
}

.floating { 
    display: flex;
    animation-name: other;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    font-family: Avenir, Arial, Helvetica, sans-serif;
    font-size: 1.3em;
}
.tag{
    color: rgb(130,130,130);
    font-family: Avenir, Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 0.8em;
    animation-name: other;
    animation-duration: 4s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
}
.windowList{
    display: flex;
    flex-direction: column;
    background-color: beige;
    border: 1px gray solid;
    border-radius: 10px;
    margin-top: 25px;
    padding: 15px;
    width: 50%;
    line-height: 11px;

}
#connector{
    display: flex;
    padding: 25px;
    font-family: Avenir, Arial, Helvetica, sans-serif;

}

#hideIcon{
  height: 55px;
  width: 55px;
  margin: 30px 0px 15px 30px;
  visibility: hidden; 
}

.contact{
    display: flex;
    align-items: start;
    padding-top: 100px;
    padding-right: 15px;
    font-family: Avenir, Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-size: 1.1em;
    animation-name: other;
    animation-duration: 4s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
}
@keyframes floating {
    0% {opacity:0;}
    50% {opacity:1;}
    100% {opacity:1;}
}
@keyframes other {
    0% {opacity:0;}
    50% {opacity:0;}
    100% {opacity:1;}
}
a{
    text-decoration: none;
    color: rgb(130,130,130);
}
a:hover{
    text-decoration: none;
    color: rgb(40,40,40);
}
.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 15px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default radio button */
  .container input {
    opacity: 0;
    cursor: pointer;
  }
  
  /* Create a custom radio button */
  .checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
  }
  
  /* On mouse-over, add a grey background color */
  .container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the radio button is checked, add a blue background */
  .container input:checked ~ .checkmark {
    background-color: #2196F3;
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
    content: "";
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .container .checkmark:after {
      top: 9px;
      left: 9px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: white;
  }
  .netName{
    margin-left: 15px;

  }
  .netSubmit{
    margin-top: 10px;

  }
  .rightSide{
      display: flex;
      justify-content: right;
      width: 100%;
      padding-right: 20px;
      font-family: Avenir, Arial, Helvetica, sans-serif;
      font-size: 1.3em;
  }

  input[type=text]{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #444;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  input[type=submit] {
    width: 30%;
    background-color: #2196F3;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  input[type=submit]:hover {
    background-color: #2011ff;
  }

/* Responsive */
@media only screen and (max-width: 480px) {

      #hideIcon{
        height: 55px;
        width: 55px;
        margin: 30px 0px 15px 30px;
        visibility: hidden; 
    }
    #connector{
        display: flex;
        padding: 25px;
        font-family: Avenir, Arial, Helvetica, sans-serif;

    }
    .middle{
        margin-left: 5%;
        margin-top: 10%;
    }
    .floating { 
        width: 300px;
        font-size: 2em;
    }
    .windowList{
       background-color: orange;
      width: 90%;
    }
    .tag{
        font-size: 1.1em;
    }
    .contact{
        font-size: 1em;
    }
      input[type=submit] {
    width: 80%;

  }
}

@media only screen and (min-width: 481px) and (max-width: 839px) {
    .middle{
        margin-left: 10%;
        margin-top: 20%;
    }
    .floating { 
        width: 300px;
        font-size: 2em;
    }
    .windowList{

      width: 90%;
    }
    .tag{
        font-size: 1.2em;
    }
    .contact{
        font-size: 1em;
    }
}

@media only screen and (min-width: 840px) and (max-width: 1150px) {
    .middle{
        margin-left: 8%;
        margin-top: 15%;
    }
    .floating { 
        width: 370px;
        font-size: 2.5em;
    }
    .tag{
        font-size: 1.3em;
    }
    .contact{
        font-size: 1em;
    }
}

@media only screen and (min-width: 1151px) and (max-width: 1200px) {
    .middle{
        margin-left: 10%;
        margin-top: 15%;
    }
    .floating { 
        width: 370px;
    }
}