@font-face {
    font-family: "PublicSans";
    src: url("Public_Sans/PublicSans-VariableFont_wght.ttf");
}

@font-face {
    font-family: "Quatro";
    src: url("Quattrocento/Quattrocento-Bold.ttf");
}

* {
    background-color: transparent;
}

p   {
    letter-spacing: 1px;
    font-size: 1rem;
}

body    {
    margin: 0;
}

nav {
    grid-row: 1/2;
    grid-column: 1/-1;
    background-color: rgb(168,155,123);
    border: solid 3px white;
    position: sticky;
    top: 0;
    z-index: 1;
}

nav ul  {
    display: flex;  
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li   {
    width: 100%;
}

nav a {
    color: #FFFFFF;
    display: block;
    padding: 40px;
    text-decoration: none;
    text-align: center;
    font-size: x-large;
    font-family: "Quatro";
}

nav a:hover   {
    background-color: rgb(255, 179, 0);
}

footer  {
    grid-row: 7/8;
    grid-column: 2/-2;
    padding: 1rem;
    text-align: center;
    font-size: 1rem;  
    background-color: rgb(205, 189, 151);
    color: white;
    border-top: solid 3px white;
    font-family: "Quatro";
}

#darkback   {
    background-color: rgb(168,155,123);
    padding: 0.5rem;
}

#lightback   {
    background-color: white;
    padding: 1rem;
    color: rgb(168,155,123);
}

#webdev  {
    grid-row: 2/3;
    grid-column: 2/3;
    text-align: center;
    padding: 50px;
    background-color: rgb(205, 189, 151);
    color: white;
    font-family: "PublicSans";
}

#webdev img {
    padding-bottom: 30px;
    border-radius: 60px;
    width: 100%;
}

#gamedev  {
    grid-row: 2/3;
    grid-column: 3/4;
    text-align: center;
    padding: 50px;
    background-color: rgb(205, 189, 151);
    color: white;
    font-family: "PublicSans";
}

#gamedev img    {
    padding-bottom: 30px;
    border-radius: 60px;
    width: 100%;
}

#softdev  {
    grid-row: 3/4;
    grid-column: 2/3;
    text-align: center;
    padding: 50px;
    background-color: rgb(205, 189, 151);
    color: white;
    font-family: "PublicSans";
}

#softdev img    {
    padding-bottom: 30px;
    border-radius: 60px;
    width: 100%;
}

#photography  {
    grid-row: 3/4;
    grid-column: 3/4;
    text-align: center;
    padding: 50px;
    background-color: rgb(205, 189, 151);
    color: white;
    font-family: "PublicSans";
}

#photography img    {
    padding-bottom: 30px;
    border-radius: 60px;
    width: 100%;
}

#whyty  {
    grid-row: 4/5;
    grid-column: 2/-2;
    background-color: rgb(168,155,123);
    text-align: center;
    color: white;;
    border-top: solid 3px white;
    font-family: "Quatro";
}

#business1  {
    grid-row: 5/6;
    grid-column: 2/3;
    background-color: rgb(168,155,123);
    padding: 25px;
    color: white;
    font-family: "PublicSans";
}

#business2  {
    grid-row: 5/6;
    grid-column: 3/4;
    background-color: rgb(168,155,123);
    padding: 25px;
    color: white;
    font-family: "PublicSans";
}

#business3  {
    grid-row: 6/7;
    grid-column: 2/3;
    background-color: rgb(168,155,123);
    padding: 25px;
    color: white;
    font-family: "PublicSans";
}

#business4  {
    grid-row: 6/7;
    grid-column: 3/4;
    background-color: rgb(168,155,123);
    padding: 25px;
    color: white;
    font-family: "PublicSans";
}

#wrapper {
    display: grid;
    grid-auto-rows: minmax(0px, auto);
    grid-template-columns: minmax(0, 1fr) 1fr 1fr minmax(0, 1fr);
}