body {
    background-color: #63205B;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #C95E38;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

input{
    margin-bottom: 10px;
}

.header {
    background-color: #000000;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 5px;
    display: flex;
    align-items: center;
    color: white;
    font-size: 12px;
    text-shadow: 2px 2px 0 black;
    margin-bottom:5px;    
}

.header img {
    height: 100px;
    width: 80px;
    margin-right:10px;
    margin-left: 5px;
    margin-top: 5px;
}

h1 {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    margin-left: 8px;
    margin-bottom: 3px;
    color: white;
    text-shadow: 2px 2px 0 black;
}

h2 {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    margin-left: 10px;
    margin-bottom: 3px;
    color: white;
    text-shadow: 2px 2px 0 black;
}

h3 {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    margin-top:10px;
    margin-left: 8px;
    margin-bottom: 0px;
    color: white;
    text-shadow: 2px 2px 0 black; 
}


h4 {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    margin-top:10px;
    margin-left: 8px;
    margin-bottom: 5px;
    color: white;
    text-shadow: 2px 2px 0 black; 
}

.colors {
    margin-left: 10px;
    padding: 10px;
}

.Box {
    padding: 20px;
    border: 5px solid #ffffff;
    border-radius: 10px;
    background-color: black;
    align-items: center;
    width: 450px;
    margin-top:5px;
}
form {
    display: flex;
    flex-direction: column;
    width: 80%;
}
.center {
    display: flex;
    justify-content: center;
}
.dropdown {
    position: relative;
    display: inline-block;
    font-family:Arial, Helvetica, sans-serif;
    font-size:15px;
}


.dropbtn {
    background-color: #000000;
    border-radius: 40px;
    color: white;
    border: none;
    padding: 15px 30px;
    border:none;
    cursor: pointer;
    font-size: 16px;
    scale:calc(120%);
    
}

/* content blocks */
.dropdown-content {
    display: none;
    border-radius: 18px;
    position: absolute;
    background-color: #000000;
    min-width: 180px;
    border: 5px solid #ffffff; 
    margin-left: 7px;
    font-size:16px;
    margin-top:5px;
}

/*links inside the dropdown */
.dropdown-content a {
    color: white;
    padding: 15px 8px;
    text-decoration: none;
    display: block;
}


.dropdown-content a:hover {
    background-color: #9b0983;
    color: white;
    border-radius: 17px;
}

.dropdown:hover .dropdown-content {
    display: block;
}
