* {
    margin: 5px;
    padding: 5px;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

header {
    /*background-image: url(./img/lia_header.jpeg);*/
    background-color: #FCE0C7;
    border-radius: 20px;
    border: 6px solid #C11120;
    height: 100%;
    color: #C11120;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

body {
    background-image: url(./img/lia_bg.jpg);
}

h1 {
    font-family: "Ribeye", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 200%;
}

main {
    background-color: #FCE0C7;
    border-radius: 20px;
    border: 6px solid #C11120;
}

.button {
    background-color: #FCDE6B;
    border: dashed 1px #D6CD1A;
    border-radius: 2px;
    color: #FF89BB;
    font-family: "Pompiere", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.button:hover {
    background-color: #D6CD1A;
    border: solid 1px #FCDE6B;
    color: #C11120;

    transition: color 1s;
}

h2 {
    font-family: "Smythe", system-ui;
    font-weight: 400;
    font-style: normal;
    size: 200%;
}

.subheader {
    background-color: #FCC5CF;
    border-radius: 20px;
    border: 3px dashed #FF89BB;
}

a {
    text-decoration: none;
    color: #FF89BB;
    font-family: "Smythe", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 150%;
}

a:hover {
    color: #C11120;

    transition: color 0.5s;
}

.links {
    display: grid;
    
}

.box {
    background-color: #D6CD1A;
    border-radius: 20px;
    border: 3px dashed #FCDE6B;
    text-align: center;
}

.box:hover {
    background-image: url(./img/lia_header.jpeg);
}

h3 {
    font-family: "Smythe", system-ui;
    font-weight: 400;
    font-style: normal;
}

p {
    font-family: "Pompiere", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.banner {
    background-image: url(./img/strawberry_divider.jpg);
    border-radius: 30px;
    height: 100px;
}

.info {
    background-color: #FCDE6B;
    border-radius: 20px;
    border: 3px solid #D6CD1A;

    font-family: "Pompiere", sans-serif;
    font-weight: 400;
    font-style: normal;
    height: auto;
}

figure {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.info img {
    max-width: 100%;
    height: auto;
    border: 3px dashed #FF89BB;

    transition: 1s;
}

.info img:hover {
    transform: scale(2);
}

#pagedoll {
    background-repeat:no-repeat; position:fixed; z-index:100; cursor:default;
    bottom: 0; 
    right: 0;
    height: 200px;
    padding-right: 50px;
    width: auto;
}

footer {
    background-color: #FCE0C7;
    border-radius: 20px;
    border: 6px solid #C11120;
    align-items: center;
}

@media screen and (min-width: 768px){
    .links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .info img:hover {
        transform: rotate(45deg);
    }

    #pagedoll {
        background-repeat:no-repeat; position:fixed; z-index:100; cursor:default;
        bottom: 0; 
        left: 0;
        height: 200px;
        padding-left: 50px;
        width: auto;
    }
} 
    
