:root{
   --cpactc: rgb(0, 137, 150); 
   --cpactclight: rgb(0, 167, 180); 
   --cpactcdark: rgb(0, 107, 120); 
}

* {
    font-family: Arial, Helvetica, sans-serif;
}


body, p, h1, h2, h3{
    margin: 0px;
}


header{
    p{
        font-size: 3vh;
        font-weight: bold;
    }

    .headleft{
        height: 100%;
        width: 80%;
        display: flex;
        align-items: center;
        img{
            height: 100%;
            margin-right: 1%;
        }
        
        display: flex;;
    }
    
    .homebut{
        border: 2px solid var(--cpactc);
        border-radius: 5px;
        height: 80%;
        /*max-height: 20px;*/

        min-width: 40px;
        /*max-width: 60px;*/
        padding: 1%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .homebut:hover{
        background-color: lightgray;
    }

    background-color: white;
    height: 5vh;
    padding: 1%;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.intro{
    background-color: var(--cpactc);
    padding: 3%;
}

.alert{
    background-color: rgb(120, 200, 219);
    margin-top: 2vh;
    text-align: center;
    padding:10px;
}

.clickable:hover{
    background-color: var(--cpactclight);
}


footer{
    p{
        font-size: 10px;
    }

    background-color: var(--cpactc);
    height: 3vh;
    padding: 1%;

    position: fixed;
    bottom: 0px;
    width: 98%;
    
    display: flex;
    align-items: center;
}