/* Style Settings */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');
:root {
    --font: 'Poppins', 'Poppins', sans-serif;
}

body {
    background:linear-gradient(
  58deg,
  #000000,           /* pure black start */
  #0a0a0f,           /* near-black */
  #0d1b2a,           /* deep navy/blue highlight */
  #0a0a0f,           /* fade back to near-black */
  #000000            /* end black */
);
	background-size: 450% 450%;
	animation: gradient 10s ease infinite;

  display: flex;
  justify-content: center; /* horizontal centering */
  align-items: center;
}

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


.theme-light {
    --color-main: #fff;
    --color-text: #fff;
 }


#Photo {
    display: block;
    margin: 8px auto 13px;
    width:220px;
    margin-bottom:30px;
    margin-top:25px;
}

#Name {
    color: #fff;
    font-size: 17px;
    display: block;
    font-family: 'Poppins';
    text-align: center;
    max-width: 400px;
    padding:0 20px;
    margin: auto;
}

@media (max-width:450px) {
    #Name {
        font-size:16px;
    }
}

#title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    display: block;
    font-family: var(--font);
    width: 100%;
    margin-top: 50px;
    text-align: center;
    text-decoration: none;
}



#linksbutton {
    max-width: 300px;
    width: auto;
    display: block;
    margin: 27px auto;
}

.links {
    display: block;
        background-color: rgba(255, 255, 255, 0.0 );
    color: var(--color-text);
    font-family: var(--font);
    text-align: center;
    margin-bottom: 20px;
    padding: 17px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: all .25s cubic-bezier(.08, .59, .29, .99);
    border: solid var(--color-main) 2px;
}

.links:hover {
    background-color: #fff;
    color: #000
    border: solid var(--color-main) 2px;
}
.links i {
    font-size:20px;
    position:relative;
    top:1px;
}
.links i.fa-envelope {
    top:1.5px;
}


.gears {
    width: auto;
    text-align: center;
    margin: 10px auto;
  }

.gear {
    display: inline-block;
        background-color: rgba(255, 255, 255, 0.0 );
    color: var(--color-text);
    font-family: var(--font);
    text-align: center;
    margin-bottom: 10px;
    padding: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    transition: all .25s cubic-bezier(.08, .59, .29, .99);
    border: solid var(--color-main) 2px;
}

.gear:hover {
    background-color: #fff;
    color: #000;
    border: solid var(--color-main) 2px;
}

.footervalue {
    text-align: center;
    font-size: 1.3rem;
    margin-top: 10px;
}

.footervalue a {
    text-decoration:none;
}

#footertext {
    color: var(--color-main);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    margin-top: 20px;
    text-align: center;
    text-decoration: none;
}

a.image {
    display: block;
    width: 300px;
    margin: auto;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
}
a.image img {
    width:100%;
}
a.image .subtitle {
    background: white;
    color: #000;
    padding: 15px;
    font-size: 12px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    font-family: 'Poppins';
    text-decoration: none;
    margin-bottom: 25px;
}
