@font-face { 
    font-family: "Dancing Script";
    font-style: normal;
    font-weight: 400;
    src: url(/fonts/roboto-regular.woff2) format("woff2");
}

/* html {
    background-image: linear-gradient(#6a11cb 0%, #2575fc 100%);
    background-repeat:no-repeat;
    background-attachment: fixed;
} */

html, body {
    height: max-content;
    color: white;
    font-family: "Roboto", sans-serif;
}

html {
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}

.column {
    padding: 5px 50px;
    border-radius: 2rem;
    background-color: #0000002f;
    width: 20%;
    height: fit-content;
    padding-bottom: 2rem;
}

#greeting {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    text-align: center;
    padding-bottom: 5rem;
}

#content {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    padding-bottom: 5rem;
}

#local-resources ul {
    padding: 0;
}

#local-resources ul li {
    list-style: none;
    padding: 0.7rem 4rem;
    background-color: white;
    margin: 1rem 0;
    border-radius: 0.7rem;
    font-weight: bold;
    text-align: center;
}

#local-resources ul a {
    text-decoration: none;
}

#local-resources ul a,
#local-resources ul a:visited,
#local-resources ul a:focus {
    color: #6a11cb;
}

#other-resources ul li {
    list-style: none;
    padding: 0.5rem 0;
}

#other-resources ul li a {
    color: white;
}

#other-resources ul a:visited,
#other-resources ul a:focus {
    color: darkgrey;
}

@media screen and (max-width: 900px) {
    #content {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .column {
        width: 90%;
    }
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
