@font-face {
    font-family: 'StarJedi';
    src: url('../fonts/StarJedi.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Aurebesh';
    src: url('../fonts/Aurebesh.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Sterilict';
    src: url('../fonts/Sterilict.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
html{
    font-family: 'Aurebesh';
}

body{
    background-image: url('../images/pp-bg.jpg');
    background-size: center;
}
#title{
    display: grid;
    grid-template-columns: 1fr 3fr;
    color: whitesmoke;
}
#logo{
    width: 140px;
}
h1{
    justify-content: center;
    align-items: center;
    font-size: 35px;
    text-shadow: #000000 2px 2px 0px;
    
}

#options{
    display: grid;
    justify-content: center;
    align-items: center;
}
#listOptions{
    display: grid;
    grid-template-columns: repeat(3, auto);
    list-style-type: none;
    justify-content: center;
    align-items: center;
}
#home{
    grid-row:1/2;
    grid-column:1/2;

    padding: 5px;
    margin: 10px;
    border: 5px solid #c19221;
    background-color: whitesmoke;
    border-radius: 35%;
    justify-content: center;
    align-items: center;
}
#wwr{
    grid-row:1/2;
    grid-column:2/3;

    padding: 5px;
    margin: 10px;
    border: 5px solid #c19221;
    background-color: whitesmoke;
    border-radius: 35%;
    justify-content: center;
    align-items: center;
}
#ice{
    grid-row:1/2;
    grid-column:3/4;

    padding: 5px;
    margin: 10px;
    border: 5px solid #c19221;
    background-color: whitesmoke;
    border-radius: 35%;
    justify-content: center;
    align-items: center;
}
#project{
    grid-row:1/2;
    grid-column:4/5;

    padding: 5px;
    margin: 10px;
    border: 5px solid #c19221;
    background-color: whitesmoke;
    border-radius: 35%;
    justify-content: center;
    align-items: center;
}
a {
    text-decoration: none;
    color: black;
}





main{
    display: grid;
    grid-template-rows: repeat(4, auto);
    gap: 20px;
    padding: 20px;
}
section{
    background-color: #9c7945;
    border: 5px solid #346405;
    padding: 20px;
    border-radius: 10%;
    color: whitesmoke;
}
#aboutMe{
    background-color: #181206;
    border: 5px solid #2e1b08;
    padding: 0px 20px 20px 20px;
    color: whitesmoke;
}

footer{
    display: grid;
    border: 2px solid #c19221;
    background-color: #2e1b08;
    border-radius: 50%;
    color: whitesmoke;
    font-size: 12px;
    justify-content: center;
    align-items: center;
}

#cla {
    color: whitesmoke;
}

#cldiv {
    background-color: #181206;
    border: 5px solid #2e1b08;
    padding: 0px 20px 20px 20px;
    color: whitesmoke;
    margin: 40px;
}






/* HOVER EFFECTS */
/* h1, a, section, p, li */
h1:hover {
    font-family: "StarJedi";
}
h2:hover {
    font-family: "StarJedi";
}
a:hover {
    font-family: "Sterilict";
}
section:hover {
    font-family: "Sterilict";
}
p:hover {
    font-family: "Sterilict";
}
li:hover {
    font-family: "Sterilict";
}
#cla:hover {
    font-family: "Sterilict";
}