@charset "UTF-8";

header
{
    background-color: rgba(139, 139, 139, 0.267);
    font-size: 24px;
    box-sizing: border-box;

    position: -webkit-sticky;
    position: sticky;
    top: 0;

}

body
{
    background-image: url('Images/Sunset.jpg');
    background-size: cover;
    background-attachment: fixed;
    font-size: 24px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
}

@font-face {
    font-family: Cinzel;
    src: url(Cinzel-VariableFont_wght.ttf);
}

p
{
    font-family: Cinzel;
    color: white;
}

h1
{
    font-family: 'Cinzel';
    color: white;
    font-size: 300%;
}

h4
{
    color: white;
}

img{
    border-radius: 50%;
    width: 150px;
}

@media (max-width:600px) {
    header{
        font-size: 12px;
    background-color: rgba(139, 139, 139, 0.267);
    box-sizing: border-box;
    }

    img{
        width: 80px;
    }

    h1{
        font-size: 100%;
    }

}

a
{
    color: rgb(255, 255, 255);
}

a:hover {
    background-color: rgb(122, 122, 122);
    color: rgb(255, 255, 255);
}

