/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}
/* 2. Remove default margin */
* {
  margin: 0;
}
/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
  font-family: Arial, Helvetica, sans-serif;
}
/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}
/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  font-weight: bold;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color:black;
    font-weight: 600;
}
a:hover{
    text-decoration: underline;
}
/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

/* end reset */

h1{
    font-size:36pt;
}
h2{
    font-size:30pt;
}
h3{
    font-size:24pt;
}
h4{
    font-size:18pt;
}
h5{
    font-size:12pt;
}
h6{
    font-size:10pt;
}
/* p{
    font-size:10pt;
} */
button{
    border:1px #00e6ee solid;
    outline: none;
    border-radius:3px;
    background:#23FFFF;
    color:#000;
    padding:5pt 10pt;
    text-transform: uppercase;
    font-size: 10pt;
    font-weight:600;
    min-width:fit-content;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    
}
a{
    text-decoration: none;
    color:black;
    size:10pt;
    font-weight:500;
}
a:hover{
    text-decoration: underline;
}
header{
    min-width:100dvw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding:10pt;
}

nav{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap:10pt;
    font-size: 10pt;
    text-transform: uppercase;
}
nav ul li a{
    font-weight: 500;
    text-transform: uppercase;
}

main{
    display:flex;
    flex-grow:1;
    min-width: 100dvw;
}

footer{
    min-width:100dvw;
    min-height:50px;
    background-color: black;
    color:#fff;
    display: flex;
    flex-direction:column;
    align-items: center;
    padding:10pt;
}
footer a {
    color:#fff;
}

.container{
    display:flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    min-height: 100dvh;
    color:#FEF8E8;
    text-transform: lowercase;
    flex-direction: column;
    gap:50pt;
} 
.socials{
    display:flex;
    align-items: center;
    justify-content:space-evenly;
    gap:10pt;
}

.social_tile{
    display:flex;
    flex-direction: row;
    gap:5pt;
    justify-content: space-evenly;
    align-items: center;
    border:1pt #23FFFF solid;
    padding:5pt;
    border-radius: 5pt;
     color:#FEF8E8;
}

