@font-face {
    font-family: spartan;
    src: url(fonts/League_Spartan.ttf);
}
@font-face {
    font-family: tech;
    src: url(fonts/Tektur-Regular.ttf);
}
body{
    background-color: rgb(255, 248, 214);
    margin: 0;
}
footer{
    background-color: rgb(255, 248, 214);
}
.page_title{
    color:black;
    font-family: spartan, Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 8rem;
    text-align: center;
    padding: 20px;
}
.contact_element{
    transition: transform 0.7s ease-in-out;
    border-radius:20px;
    margin:0;
    padding:0;
    border:none;
    cursor:pointer;
    appearance:none;
    background-color:inherit;
    margin:10px;
}
.contact_element img{
    justify-content: center;
    width: 50px;
}
.contact_element:hover{
    transform: rotate(360deg);
}
.contact_text{
    font-family: tech, 'Courier New', Courier, monospace;
}
a{
    text-decoration: none;
    color:black;
}
.language_element{
    margin:20px;
    transition: height 0.3s ease;
}
.language_element:hover{
    height:90px;
}
li{
    font-family: spartan, Arial, Helvetica, sans-serif;
    background-color: burlywood;
    width:fit-content;
    border-radius: 8px;
    margin:20px;
    padding:8px;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}
li:hover{
    background-color: rgb(188, 151, 102);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.project{
    background-color: burlywood;
    padding:30px;
    width:300px;
    margin:30px;
    height: 275px;
    border-radius: 30px;
    border: 4px solid black;
    transition: background-color, width, 0.3s ease;
    align-items: center;
    justify-content: center;
    text-align: center;
    display: inline-block;
}
.project img{
    height:150px;
    border-radius: 30px;
}
.project h4{
    font-family: tech, 'Courier New', Courier, monospace;
}
.project:hover{
    background-color: rgb(171, 134, 86);
    width:350px;
}
.page_button{
    display: inline-block;
    flex-direction: row;
    width:fit-content;
    height:fit-content;
    color:black;
    font-family: spartan,Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    border:none;
    background-color: burlywood;
    cursor: pointer;
    transition: ease-in-out 0.3s;
    padding:10px;
    border-radius: 10px;
    margin:20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.page_button:hover{
    cursor:pointer;
    color: white;
    box-shadow: none;
}
.navbar{
    background-color: rgb(125, 145, 115);
    padding:1px;
}
.about_me_text{
    font-size: 1.5rem;
}
.about_me_text b{
    font-size: 2rem;
    font-family: tech, 'Courier New', Courier, monospace;
}
.copyright{
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    float:left;
}
.hack_club_logo{
    height:50px;
}
.languages{
    text-align: center;
}