@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
    --accent-color: #131313;
    --accent-lit-color: #222222;
    --base-color: #FFFFFF;
    --text-color: #1b1b1b;
    --input-color: #e2fff3;
    --incorrect-color: #ec4463;
}

*{
    margin: 0;
    padding: 0;
}

html{
    font-family: Poppins, sans-serif, 'Courier New';
    font-size: 12pt;
    color: var(--text-color);
    text-align: center;
}

.wrapper{
    align-self: center; 
    background: rgba(255, 255, 255, 0.6);
    min-height: 100vh;
    height: auto;
    overflow: hidden;
}

.header {
    background-color: var(--accent-color);
    height: 150px;
    z-index: 1;
}

h1{
    font-size: 4rem;
    font-weight: 900;
    margin-top: 10px;
    text-transform: uppercase;
}

h2{
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
}

a{
    text-decoration: none;
    color: var(--base-color);
    transition: 150ms ease;
}

.under a{
    text-decoration: underline;
}

a:hover{
    color: var(--text-color);
}

a:focus{
    outline: none;
    color: var(--text-color);
}

button{
    margin-top: 10px;
    border: none;
    border-radius: 1000px;
    padding: 0.85em 3em;
    background-color: var(--accent-lit-color);
    color: var(--base-color);
    font: inherit;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: 150ms ease;
    margin: 5px;
    height: 60px;
}

button:hover{
    background-color: var(--text-color);
}

button:focus{
    outline: none;
    background-color: var(--text-color);
}

.btncon {
    display: flex;
    justify-content: center;
}

.start {
    margin: 10px;
    margin-top: 50px;
}

.pfp {
    border-radius: 1000px;
    border: 5px solid var(--accent-color) ;
}

.text {
    margin-top: 20px;
    margin-bottom: 20px;
    margin: auto;
    width: 50vw;
}

.text p {
    font-size: 1.5rem;
    font-weight: 500;
}

.dropimg {
    height: 30px;
}

.dropbtn {
  background-color: var(--accent-lit-color);
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content h3 {
  background-color: var(--accent-color);
  color: var(--base-color);
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: var(--text-color);
    border-radius: 50px 50px 0 0 ;
}

@media(max-width: 600px){

    h1{
        font-size: 10vw;
    }

    h2{
        font-size: 8vw;
    }
}

@media(max-width: 350px){

    button{
        font-size: 6vw;
    }
}

@media(max-width: 250px){

    .btncon {
        display:grid;
        justify-content: center;
    }

    h1{
        font-size: 9vw;
    }

    h2{
        font-size: 6vw;
    }

    .wrapper {
        border-radius: 20px;
    }

    .header {
        border-radius: 20px 20px 0 0 ;
        height: auto;
    }
    
    .pfp {
        width: 65vw;
        border: 5%;
    }
}

.warning { 
    display: none; 
    color: red; 
    font-size: 1.5em; 
} 