body {
  font-family: "Graphik", Helvetica, sans-serif, Lucida Sans Unicode;
  background-color: #f4f4f4;
  margin: 0px
}

article {
  background-color: white;
  width: 90%;
  padding: 12px 20px;
  border-radius: 12px;
  margin: 0 auto;
}

.spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.spinner {
  /* change color here */
  color: #c00;
  display: inline-block;
  width: 80px;
  height: 80px;
}
.spinner,
.spinner:after {
  box-sizing: border-box;
}
.spinner:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6.4px solid currentColor;
  border-color: currentColor transparent currentColor transparent;
  animation: spinner 1.2s linear infinite;
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.intro {
  width: 100%;
  margin: 24px 0;
  line-height: 1.5em;
  font-weight: bold;
  border-top: black;
}

.link-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px;
}

.link-input {
  width: 100%;                        
  font-size: 15px;
  padding: 12px 80px 12px 12px;      
  border: none;                       
  border-bottom: 2px solid #ccc;    
  background-color: #f4f4f4;
  outline: none;
  box-sizing: border-box;            
}

.copy-button {
  position: absolute;
  right: 3px;
  top: 3px;
  bottom: 3px;
  padding: 0 16px;
  background-color: #c00;
  color: white;
  border: none;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  border-radius: 8px; 
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.message {
  text-align: left;
  color: darkgreen;
  margin-bottom: 20px;
}

@media only screen and (min-width: 1024px) {
  article {
    width: 60%;
  }
}

.edge-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-left: 5px; 
  margin-right: 5px;
}

hr {
  border: none;
  border-top: 2px solid #d9d9d9;
}
.alpha-list {
  list-style-type: lower-alpha;
}

:host {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 10px 25px;
  width: 100%
}

.header__logo-container {
  display: flex;
  align-items: center;
  background-color: white;
  border-bottom: #f4f4f4 solid 24px;
}

.header__logo-link {
  text-decoration: none;
}

.header__logo-icon {
  color: #cc0000;
  font-size: 24px;
  line-height: 1;
  width: 38px;
  height: 38px;
  display: inline-block;
  margin-left: 24px
}

.settings {
  color: black ;
}

.link-wrapper {
  position: relative;
}

.visible-message {
  display: block;
  text-align: left;
  color: darkgreen;
  margin: 16px 0;
}