@import url('https://fonts.googleapis.com/css2?family=Delius+Swash+Caps&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Akronim&display=swap');
@import url('https://fonts.googleapis.com/css2?family=K2D&display=swap');

*{
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
    font-family: 'K2D', sans-serif;
}
h1, h2, h3, p{
    text-align: center;
}
p{
    margin: 0px 20px 0px 20px;
}
.orange{
    color: orange;
}
.logo{
    display: flex;
    justify-content: right;
}
.logo > h1{
    font-family: 'Akronim', cursive;
    font-size: 5rem;
}
.name{
    font-family: 'Delius Swash Caps', cursive;
}
.sticky {
	background-color: #ffffff;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
}
.list-inline {
	list-style: none;
	margin-left: -0.5em;
	margin-right: -0.5em;
	padding: 0;
}
.list-inline > li {
	display: inline-block;
	margin-left: 0.5em;
	margin-right: 0.5em;
}
.list-inline > li > a{
    text-decoration: none;
    color: #000;
}
.list-inline > li:before {
	content: "\200B"; /* 1 */
	position: absolute; /* 2 */
}
.holder{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.deck{
    display: grid;
    grid-template-rows: auto auto auto auto;
    grid-gap: 20px;
}
.card{
    position: relative;
    padding: 0.5rem;
    border-radius: 8px;
    background: #fff;
    max-width: 15rem;
    min-width: 14rem;
    min-height: 200px;
    margin: 0 2rem 0 2rem;
    box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.4);
}
.card > img{
    height: 8rem;
}
.logocontain{
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(2, 1fr);
}
.ccontainer{
    position: relative;
    height: 280px;
}
.circleone, .circletwo, .circlethree{
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.4);
}
.circleone{
    height: 240px;
    width: 240px;
}
.circletwo{
    height: 160px;
    width: 160px;
}
.circlethree{
    height: 80px;
    width: 80px;  
}
.logogrid{
    display: grid;
    grid-gap: 8px;
    grid-template-columns: repeat(3, 1fr);
    transform: translate(-80%, -24%);
}
.logos{
    width: 64px;
    z-index: 2;
}
.input-box {
    position: relative;
}
.input-box input {
    border-style: none;
    background: transparent;
    border-bottom: 1px solid #000;
    width: 100%;
    position: relative;
    outline: none;
    padding: 10px 0;
    color: #000;
    font-size: 18px;
    margin-bottom: 30px;
}
.input-box label {
    color: #000;
    position: absolute;
    padding: 10px 0;
    top: 0;
    left: 0;
    pointer-events: none;
    transition: 0.5s;
} 
.input-box input:focus ~ label,
.input-box input:valid ~ label {
    color: orange;
    font-size: 16px;
    top: -20px;
    transition: 0.5s;
}
.box input[type="submit"] {
    background: transparent;
    color: #000;
    border-spacing: none;
    border: 1px solid #000;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
}
.box input[type="submit"]:hover {
    background: orange;
    border: 1px solid orange;
    transition: 0.3s;
}
.submit{
    display: flex;
    justify-content: center;
}
#submit{
    border-radius: 98px;
    padding: 8px;
    width: 98px;
    color: white;
    background: orange;
}
footer{
    background: #000;
    height: 24vh;
}
footer > p {
    font-family: 'Akronim', cursive;
    font-size: xx-large;
    margin-top: auto;
    color: white;
}
button{
    border: none;
    color: #ffffff;
    background-color: orange;
    border-radius: 90px;
    padding: 8px;
    width: 4rem;
    font-size: larger;
    margin-top: auto;
    margin-bottom: auto;
}
.logo > h1{
    font-size: 3.2rem;
    
}