* {
    margin: 0;
    padding: 0;
}
@font-face {
    font-family: popart;
    src: url(PopArt-Regular.ttf);
}
h1{
    font-size: 72pt;
    font-family: popart;
}
h2{
    font-size: 30pt;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bolder;
    padding-bottom:10px;
}
p, button{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
}
nav{
    li{
        margin: 40px;
        list-style: none;
        float:right;
    }
    a{
        font-size: 25px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        text-decoration: none;
        color:black;
        padding: 10px;
    }
    a:hover:not(.active){
        font-weight: bolder;
        color:white;
        background:red;
        
        border-radius: 10px;
    }
    .active{
        font-weight: bolder;
        color:white;
        background:red;
        
        border-radius: 10px; 
    }
    img{
        float:left;
        width: 10%;
    }
    overflow: hidden;
}

main{
    display:grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
    section{
        padding: 50px;
        width: 75%;
        h1, h2, p{
            padding-bottom: 20px;
        }
        #TAndy, #TKeith1, #TKeith2, #TRoy1, #TRoy2{
            display:none;
        }
    }
    button{
        border:none;
        font-weight: bold;
        background:none;
    }
    figure{
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 10px;
        row-gap:10px;
        place-items: center;
        img{
            width: 100%;
            border-radius: 10px;
        }
        img:nth-child(1){
            width: 100%;
            grid-column: 1/3;
        }
        margin:10%;
    }
}
figure:nth-child(4){
    display:grid;
    justify-items: center;
    grid-template-columns: 50px 1fr 1fr 1fr 50px;
    img{
        width: 70%;
        padding-bottom:10px;
        border-radius: 10px;
    }
    img:nth-child(1){
        grid-column: 2/3;
    }
}
#fotoAndy{
    width: 75%;
}
footer{
    background:red;
    a, p {
        color:white;
        padding: 0 20px 10px 20px;
        margin-top: 20px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        text-decoration: none;  
    }
    svg{
        display: block;
        width: 35px;
        height: 35px;
        
        margin: auto;
        padding: 5px 5px 5px 5px;
        border-radius: 10px;
        
        
    }
    svg:hover{
        fill: black;
        background:rgba(255, 255, 255, 0.5);
    }
    text-align: center;
}