@import './variables.css';

* {
   box-sizing: border-box;
   padding: 0;
   margin: 0;
   text-decoration: none;
   border: none;
   outline: none;
}
body {
   background-color: var(--white);
   color: var(--black);
   font-size: var(--text-l);
   font-family: 'Roboto', sans-serif;
   overflow-x: hidden;
}

::selection {
   background-color: #00f98d;
   color: var(--black);
   padding: 2px;
}
::-webkit-scrollbar {
   width: 10px;
   width: 10px;
}
::-webkit-scrollbar-thumb {
   background-color: #00f98d;
   border-radius: 10px;
}

.link {
   text-transform: uppercase;
   margin: 0 12px;
   font-size: var(--text-l);
   position: relative;
   transition: all .3s linear;
 }
 .link:hover {
   color: #00f98d;
 }
 .link:after {
   display: block;
   content: '';
   width: 100%;
   height: 3px;
   background-color: #00f98d;
   border-radius: 10px;
   opacity: 0;
   transition: all .3s linear;
   position: absolute;
 }
 .link:hover:after {
   margin-top: 13px;
   opacity: 1;
 }
 
 .btn  {
   font-size: var(--text-l);
   background-color: #00f98d;
   color: var(--black);
   padding: 10px 16px;
   border-radius: 5px;
   text-transform: uppercase;
   font-weight: 700;
   margin: 0 6px;
   transition: all .3s linear;
   cursor: pointer;
 }
 .btn:hover {
    background-color: var(--black);
    color: #00f98d;
 }

 a {
   color: var(--black);
   transition: all .3s linear;
   font-weight: bold;
 }
 a:hover {
   color: #00f98d
 }

 @import './variables.css';

.messages {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.message {
   position: fixed;

   top: 65px;
   width: 100%;
   max-width: 400px;
   border-radius: 10px;

   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 5px 10px;
   background-color: var(--black);
   color: #00f98d;
   z-index: 6;
}
@media screen and (max-width:700px) {
   .message {
      top: 80px
   }
   .btn  {
      font-size: 16px;
      background-color: #00f98d;
      color: var(--black);
      padding: 8px 14px;
      
   }
}
.message_close {
   padding: 10px;
   cursor: pointer;
   border-radius: 100%;
   transition: all .3s linear;
}
.message_close:hover {
   background-color: #00f98d;
   color: var(--black);
}

.page {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   width: 100%;
   padding: 10px;
   margin-top: 80px;
}

select {
   background-color: white !important;
}