body {
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    padding: 5px 30px 0px;
}

p {
    text-align: center;
    font-family: "Playfair Display", serif;
    margin: 8px;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 5vh;
    width: 100vw;
    margin-top: 1vh;
    padding-bottom: 1vh;
    border-bottom: 1px solid black;
}

#heartdoglogo {
    height: 100%;
    width: auto;
    margin-left: 2vw;
}

.button{
    color: black;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid black;
    padding: 10px;
    margin: 15px;
    font-family: 'Inter', sans-serif;
    align-self: center;
}

/* image divs on main page */

.img1div {
    width: 100vw;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#singletxt {
    color: white;
    position: absolute;
    font-family: "Playfair Display", serif;
}

#seasonstxt {
    color: white;
    position: absolute;
    font-family: "Playfair Display", serif;
}

.img2button {
    color: white;
    backdrop-filter: blur(5px);
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid white;
    padding: 10px;
    margin: 15px;
    font-family: 'Inter', sans-serif;
    align-self: center;
}

.img2center {
    display: flex;
    position: absolute;
}

/* mobile and tablet */

@media only screen and (max-width: 900px) {
    .img1 {
        display: block;
        max-width: 100%;
        height: auto;
    }

    #logofull {
        position: absolute;
        top: 0vh;
        left: 0;
        max-width: 100%;
        height: auto;
    }

    h1{
        font-size: 6vw;
    }

    #seasonstxt {
        top: 43%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #singletxt {
        left: 50%;
    }

    .img2center {
        top: 18vh;
    }

}

/* desktop */

@media only screen and (min-width: 901px) {
    .img1 {
        margin-bottom: 5vh;
        margin-top: 5vh;
        display: block;
        max-width: 65%;
        height: auto;
    }   

    #logofull {
        position: absolute;
        top: 10vh;
        max-width: 65%;
        height: auto;
    }

    h1{
        font-size: 3vw;
    }

    h2{
        font-size: 3vw;
    }

    p{
        font-size: 2vw;
    }

    #seasonstxt {
        top: 45%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #singletxt {
        left: 55%;
    }

    .img2center {
        top: 40vh;
    }
}