@import url(reset.css);
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;
	background-color: white;
	position: fixed;
	width: 100%;
	bottom: 0;

}
nav {
    position: relative;
    right: 0;
}

.box {
	width: auto;
	border: 15px blue;

	margin: 20px;
}


.form-flex {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	gap: 2vh;
}
.required.after {
	content: "*";
	color: "red";
}
.ImportantDiv{
	background-color: white; 
	width: 40%; 
	margin-left: auto; 
	margin-right: auto;
}
@media screen and (max-width:480px) {
    main {
        display: flex;
        flex-direction: column;
        font-size: 16px;
        margin-left: 40%;
    }
    footer {
      position: fixed;
      width: 100%;
      bottom: 0;
      }
    iframe {
        width: 100%;
    }
    li a {
        margin: 5px;
    }
	.ImportantDiv {
		width: 50%;
	}
  }
@media screen and (max-width:1023px) and (min-width:411px) {
    main {
        display: flex;
        flex-direction: column;
        font-size: 16px;
        margin-left: 40%;
    }
    footer {
      position: fixed;
      width: 100%;
      bottom: 0;
      }
    iframe {
        width: 100%;
    }
    li a {
        margin: 20px;
    }
	.ImportantDiv {
		width: 50%;
	}
}