:root{
    --nightColor:#14213d;
    --yellowish:#fca311;
    --metalicGold:#d4af37;
    --cardClr:#e5e5e5;
    --yelowishGlass:#fca2119e;
}

body{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background-color:  var(--nightColor);
}
.daymode{
    background-color: #fff;
    color: #000;
}
header{
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.logoh{
    display: flex;
    font-family: Panton;
    color: #fff;
}
.logotxt{
    margin-left: 1%;
}
.logoh img{
    width: 100px;
    height: 100px;
    border-radius: 100px;
    margin: 8px;
    border: var(--metalicGold) solid 5px;
}
button{
    height: 50px;
    font-family: Tech;
    font-size: 1em;
    border-radius: 20px;
    font-weight: 600;
    background-color: var(--yellowish);
    border: var(--metalicGold) solid 4px;
}
.bodypart{
    position: relative;
}
.card{
    width: 400px;
    border-radius: 15px;
    background-color: var(--cardClr);
    position:absolute;
    top: 20px;
    left: 35%;
    font-family: Tech2;
}
.cardhead{
    font-family: Tech;
    margin-inline: auto;
    border-right: black solid 2px;
    animation-name: blink;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}
.cardCont{
    padding: 10%;
    justify-items: center;
    text-align: center;
}
.cardCont img{
    width: 200px;
}
.btns{
    display: grid;
    gap: 5px;
}
a{
    text-decoration: none;
    color: #000;
}
a:hover{
    background-color: var(--yellowish);
}
.social{
    display: flex;
    gap: 20px;
}
.socialIcon{
    display: grid;
    justify-items: center;
}
.socialIcon img{
    width: 50px;
    height: 50px;
}
@font-face {
    font-family: Panton;
    src: url(/Panton-LightCaps.otf);
}
@font-face {
    font-family: Tech;
    src: url(/gnf.regular.ttf);
}
@font-face {
    font-family: Tech2;
    src: url(/ShareTechMono-Regular.ttf);
}
@keyframes blink{
    50%{
        border-right:var(--cardClr);
    }
}
@media (max-width:600px) {
    .card{
        left: 3%; 
    }
    #tr{
        height: 100px;
        width: 70px;
    }
}
@media (max-width: 500px){
    .card{
        left:1%
    }
}