body {
    font-family: 'Signika Negative', sans-serif;
}
section {
    background-color: #ffc0f7;
    font-weight: 500;
  
    border-bottom: solid black 5px ;
}

svg:hover {
    fill: #fd3fe4;
}

svg:active {
    fill: #fc2d94;
}

.page {
    background-color: #a5539b;
    /* background-image: url("/src/images/lotad.png"); */
    height: 75vh;
    color: #ffc0f7;
    font-size: 40px;
}
footer {
    background-color: #f277e2;
    color: #221420;
    text-align: center;
    padding: 30px;
}
nav {
    display: flex;
    justify-content: space-between;
}
.ulog li {
    border-radius: 30px;
    text-align: center;
    width: 140px;
}

.ulog li:hover {
    background-color: #fd3fe4;
    color: #f277e2;
}

.ulog li:active {
    background-color: #fc2d94;
}

ul.ulog {
    display: flex;
    list-style-type: none;
    width: 500px;
    justify-content: space-around;
    font-size: 30px;

}
.gamer {
    list-style-type: none;
    justify-content: space-around;
}
ul.show {
    display: block;
}
li {
    text-decoration: none;
    padding: 10px;
}
h1 {
    font-size: 90px;
    margin: 0px;
    font-weight: 600;
}
h2 {
    color:#000000;
    font-size: 30px;
}
p {
    margin: 0px;
}
.subtext {
    font-size: 15px;
    font-weight: 300px;
}
.info {
    font-size: 30px;
}
.page-area {
    display: flex;
    flex-direction: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}
.page-text {
    margin-left: 80px;
    margin-bottom: 200px;
}

a {
    text-decoration: none;
    color:#ffc0f7;
}

.button {
    width: 200px;
    height: 55px;
    border-radius: 40px;
    background-color: #f277e2;
    color: #ffc0f7;
    text-align: center;
    font-size: 30px;
    padding-top: 15px;
    margin-top: 20px;
}
.button:hover {
    background-color: #fd3fe4;
    color: #f277e2;
}
.button:active {
    background-color: #fc2d94;
}
.social-area {
    padding-bottom: 235px;
}
.social {
    margin: 10px;
}
.logo {
    height: 100px;
}
.sub-section {
    color: #f277e2;
    display: flex;
    justify-content: space-around;
    padding-left: 60px;
    padding-top: 15px;
}
.sub-section-alt {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 25px;
}
.headshot {
    /* width: 300px; */
    border-radius: 150px;
}
.headshot-container {
    display: flex;
    align-items: center;
}

.headshot:hover {
    animation-name: headshotspin;
    animation-duration: .25s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes headshotspin {
    0% {
        transform: rotate(0turn);
    }
    50% {
        transform: rotate(0.5turn);
    }
    100% {
        transform: rotate(1turn);
    }
}

.cards {
    box-shadow: 5px 5px 15px #f277e2;
    margin: 10px;
}

.project-card {
    width: 300px;
    height: 450px;
}

.cert-card {
    width: 300px;
    height: 350px;
}

.project-card:hover {
        animation-name: cardhover;
        animation-duration: 1s;
        animation-fill-mode: forwards;
        animation-timing-function: linear;
} 

@keyframes cardhover {
    0% {
        transform: scale(1.0);
        background: #ffc0f7;
    }
    50% {
        transform: scale(1.05);
        background: #f277e2;
    }
    100% {
        transform: scale(1.1);    
        background: #ffc0f7;
    }
}

.cardhover {
    animation-duration: 3s;
}

.project-container {
    display: flex;
    justify-content: space-around;
    padding-bottom: 50px;
}
@media only screen and (max-width: 1000px) {
    .project-container {
        display: flex;
        flex-wrap: wrap ;
    }
}
.project-image {
    width: 250px;
    margin-top: 25px;
    border-radius: 125px;
}

.cert-image {
    width: 225px;
    margin-top: 25px;
    border-radius: 25px;
}

.cproject-image {
    width: 200px;
    margin-top: 25px;
    border-radius: 25px;
}

hr {
    margin-left: 20px;
    margin-right: 20px;
    height: 2px;
    border: none;
    background-color: #fc2d94;
}
.project-link {
    text-decoration: none;
    color: #fa0bda;
}

.hamburger {
    display: none;
}
.hamburger:focus {
    outline: 0;
}

#contact-text {
    height: 20px;
    color: red;
}

#contact-info{
    padding-bottom: 10px;
    color: red;
}

#copyright{
    padding: 30px;
    color: red;
}

@media only screen and (max-width: 1000px) {
    .hamburger {
        display: block;
        border: 0px;
        background-color: transparent;
        color: #ffc0f7;
        font-size: 30px;
        margin: 20px;
        align-self: flex-end;
    }
    ul.ulog {
        display: none;
        background-color: #be449a;
        margin: 0px;
    }
    ul.show {
        display: block;
    }
    nav {
        display: flex;
        flex-direction: column-reverse;
        background-color: #be449a;
    }
    .logo {
        display: none;
    }
}
