/* --- Global layout --- */
body {
    background-image: url('../img/background.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #F2E0D2;
    cursor: url('../img/paw.svg'), auto;
}

a, a *, img {
    cursor: url('../img/paw.svg'), auto;
}

section {
    display: flex;
    width: 100%;
    height: 800px;
    align-items: center;
    
}

nav {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

a {
    display: flex;
    flex-direction: row;
    height: 350px;
    text-decoration: none;
}

/* --- Hover Effect for text --- */
a:hover #start-text, a:hover #f, a:hover #end-text {
    text-shadow: 10px 10px 10px rgba(178, 30, 55, 0.4);
    transform: scale(1.15);
}

/* --- Typography  --- */
#start-text {
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 100px;
    color: #9e182b;
    align-self: flex-start;
    margin-right: 25px;
    margin-top: 50px;
}

#f {
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: italic;
    font-size: 600px;
    color: #9e182b;
    line-height: 0.7;
    align-self: center;
    margin: 0 -30px;
}

#end-text {
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 100px;
    color: #9e182b;
    align-self: flex-end;
    margin-left: 25px;
    margin-bottom: 100px;
}

/* --- GIf Styling --- */
img {
    flex: 0 0 50%;
    height: 80%;
    width: auto;
    object-fit: contain;
}