.attribution { font-size: 11px; text-align: center; }

.attribution a { color: hsl(228, 45%, 44%); }

body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background-color: hsl(234, 29%, 20%);
}

.Card{
    display: flex;
    flex-direction: row;
    background-color: white;
    border-radius: 5%;
    padding: 2%;
    flex-wrap: wrap-reverse;
}

.stuff{
    max-height: 100vp;
    max-width: 50%;
    min-width: min-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stuff h1{
    margin-left: 8%;
    font-weight: 700;
    font-size: 50px;
}

.head2{
    margin-top: 0%;
    margin-left: 8%;
    font-size: 16px;
    font-weight: 400;
}

.stuff ul p{
    display: inline;
}

.stuff ul{
    margin-left: -3%;
    margin-top: 0%;
    margin-bottom: 10%;
    list-style-image: none;
    list-style-type: none;
    

}

.stuff ul li{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    margin-bottom: -5%;
}

.stuff label{
    margin-left: 8%;
    font-size: smaller;
    display: inline;
}

.stuff input{
    margin-left: 8%;
    cursor: pointer;
    display: block;
    height: 50px;
    border-radius: 5%;
    width: 33vb;
    border-width: 1px;
    box-sizing: border-box;
    padding: 6%;
}

#submit{
    margin-left: 8%;
    cursor: pointer;
    background-color:hsl(235, 18%, 26%);
    color: white;
    border-width: 0px;
    display: block;
    height: 50px;
    border-radius: 5%;
    width: 33vb;
}

#submit:hover{
    background-image: linear-gradient(to right,hsl(0, 100%, 64%),hsl(14, 89%, 60%));
}

#labels{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#labels p{
    font-size: smaller;
    color:  hsl(4, 100%, 67%);
}

.sucesstext{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-left: 8%;
    margin-right: 8%;
    margin-bottom: 8%;
    margin-top: 8%;
}

.sucesstext h1{
    width: 80%;
    font-weight: 700;
    font-size: 40px;
}

#dismiss{
    cursor: pointer;
    background-color:hsl(235, 18%, 26%);
    color: white;
    border-width: 0px;
    display: block;
    height: 50px;
    border-radius: 5%;
    width: 32vb;
}

#dismiss:hover{
    background-image: linear-gradient(to right,hsl(0, 100%, 64%),hsl(14, 89%, 60%));
}

#thankstext{
    margin-top: 0%;
    font-size: 15px ;
   max-width: 38vb;
   margin-bottom: 10%;
}

