@import url(reset.css);

.form-flex {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	gap: 2vh;
}
.required.after {
	content: "*";
	color: red;
}
a {
    transition: transform 2s;
}
a:hover {
    transform: scale(2);
}
ul {
    list-style-type: none;
    overflow: hidden;
    color: gray;
}
  
li {
    float: right;

  }
  
li a {
    display: block;
    margin: 50px;
    background-color: #dddddd;
    text-decoration: none;  
    color: black; }
footer {
	text-align: center;
}
h1 {
    font-size: 75px;
    text-align: center;
}
@media screen and (max-width:410px) {
    li a {
        margin: 5px;
      }
}
@media screen and (max-width:1023px) and (min-width:411px) {
    li a {
        margin: 32px;
      }
}