/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your HTML content. To learn how to do something, just try searching Google for questions like "how to change link color." */ header { font-family: Delicious, sans-serif; padding: 5px; text-align: center; color: white; } body { accent-color: #252778; background-color: #080926; color: #080926; /*font-family: Delicious-Roman; src: url('Delicious-Roman.otf');*/ font-family: Delicious, sans-serif; float:none; } h1 { color: White; font-family: "Trebuchet MS", Helvetica, sans-serif; font-size: 50px; padding: 1px; line-height: 20px; } h2 { color: White; font-family: Delicious, sans-serif; font-size: 35px; padding: 1px; line-height: 20px; } h3 { color: white; font-size: 25px; font-family: Delicious, sans-serif; text-align: center; padding: .02px; } p { margin-top:15px; font-family: Delicious, sans-serif; font-size: 25px; } footer { background-color: #080926; font-family: Delicious, sans-serif; padding: 5px; color: white; align-content: stretch; } footer:link{ background-color: #080926; font-family: Delicious, sans-serif; padding: 5px; color: white; } /*navigaton for header and footer*/ nav { -webkit-flex: 1; -ms-flex: 1; flex: 1; background: #252778; padding:0px; text-align: center; justify-content:space-between; } nav ul { list-style: none; margin: 10px; padding: 5px; display: inline-flex; justify-content:stretch; } #menu ul { list-style: none; margin: 1000; padding: 500; display: inline-flex; } #externallinks ul { list-style: none; margin: 1000; padding: 500; display: inline-flex; } article { -webkit-flex: 3; -ms-flex: 3; flex: 3; padding: 10px; } /*Link and image links*/ a:link, a:visited { border-style: solid; border-radius: 10px; background-color: #252778; color: white; padding: 14px 25px; text-align: center; text-decoration: none; display: inline-block; font-family: Delicious, sans-serif; margin: 5px; } a:hover, a:active { font-family: Delicious, sans-serif; background-color: #080926; border-radius: 10px; } .link { font-size: 10px; text-decoration: none; font-family: Delicious, sans-serif; margin: 5px; align-self: center; } .img-link { width: 25%; aspect-ratio: 1/1; border-style: none; border-radius: 10px; background-color: #080926; color: #252778; display: inline-flex; font-family: Delicious, sans-serif; padding: 50px; transition: transform .2s; /* Animation */ } .img-link img { width: 100%; height:100%; object-fit: cover; translate: 0px 2px; } .img-link:link { border-style: solid; border-radius: 2px; padding:0; text-align: center; text-decoration: none; display: inline-block; font-family: Delicious, sans-serif; margin: 5px; } .img-link:hover { transform: scale(1.055); } .text { font-family: Delicious, sans-serif; font-size: 20px; color: white; text-indent: 40px; text-align: center; padding: .2% 25%; } .image-gallery { display: flex; flex-wrap: wrap; } .image-gallery img { flex: 1 1 200px; width: 50%; height: auto; object-fit: cover; padding: 5px; } @media (max-width: 768px) { .image-gallery { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); } } @media (max-width: 480px) { .image-gallery { grid-template-columns: 1fr; } } .scrollgallery { width: 100%; overflow: hidden; white-space:nowrap; animation: scroll 30s linear infinite; } .scrollgallery:hover { animation-play-state: paused; } .scrollgallery img { display: inline-block; margin-right: 10px; } @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } } @media (max-width: 768px) { .scrollgallery img { width: 200px; height: 150px } } * { box-sizing: border-box; } .gradient-hover-effect { display: flex; padding: 0.875em 2em; background: linear-gradient(90deg, #3f51b5, transparent) #2196f3; font-family: inherit; color: #fff; text-decoration: none; transition: background-color 1s; place-content: center; } .gradient-hover-effect:hover, .gradient-hover-effect:focus { background-color: #e91e63; color: #fff; } /*Nesecary Hexcodes DarkBlue #080926 LightBlue #252778 Red #D7001b White #ffffff */