html, body {
    margin: 0; /* Remove default margins */
    padding: 0; /* Remove default padding */
    background-color: rgba(250, 250, 250, 1);
    font-family: "Arial", sans-serif;
}

.full-screen {
    margin: auto;
    max-width: 100vh;
}
.header-1, .header-2 {
    position: fixed;
    top: 0;
    background-color: rgba(255, 255, 255, 1);
    width: 100%;
    max-width: 100vh;
    height: 6vh;
}

.footer-1, .footer-2 {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    height: 6vh;
    max-width: 100vh;
}

.errorMessage{
    margin-left: 1vh;
}

.footer-1 .navitem:not(:last-child), .footer-2 .navitem:not(:last-child){
    border-right: 1px solid rgba(233, 233, 233, 1); /* Adds a 1px line between items */
}

.footer-1 .navitem:hover, .header-1 .navitem:hover, .footer-2 .navitem:hover, .header-2 .navitem:hover{
    background-color: rgba(250, 250, 250, 1); /* Background color on hover */
}
.body {
    background-color: rgba(255, 255, 255, 1);
    position: fixed;
    top: 6vh;
    height: 86vh;
    width: 100%;
    max-width: min(calc(100vw - 2vh), 98vh);

    padding: 1vh;
}

.content {
    position: fixed;
    top: 12vh;
    width: 100%;
    max-width: min(calc(100vw - 2vh), 98vh);
    height: 81vh;
    background-color: rgba(250, 250, 250, 1);
   
    overflow-y: scroll;
    overflow-x: hidden;
    /*margin: 10vh;*/
    /* Hide scrollbar for Firefox */
    scrollbar-width: none; /* This will hide the scrollbar */
    border-radius: 0 0 1vh 1vh;
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.1);
}

ul.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

li.navitem {
    display: inline;

}

img {
    height: 4vh; /* Set image height to 6vh */
    vertical-align: middle;
}

.navbar {
    list-style: none;
    display: flex;
    justify-content: space-around; /* Space items evenly */
    padding: 0;
    margin: 0;
}

.navbar .navitem {
    flex: 1; /* Take up one-third of the width */
    text-align: center;
    height: 100%;
}

.navbar .navitem a {
    display: inline-block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: white;
    
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
}

.navlist {
    list-style-type: none; /* Remove default list styling */
    padding: 0;
    margin: 0;
}

.navlist .navitem {
    margin: 1vh 0vh; /* Vertical margin of 1vh between items */
}

.navlist .navitem a {
    display: block; /* Makes the anchor take the full width of its container */
    background-color: white; /* White background for the box */
    color: black; /* Black text color */
    text-decoration: none; /* Remove underline from the link */
    padding: 1vh; /* Add padding to make the box visually pleasing */
    width: calc(100% - 2vh); /* Take up the full width of the container */
    box-sizing: border-box; /* Ensure padding and borders are included in the width */
    text-align: center; /* Center the text horizontally */
    margin: 1vh auto; /* Add margin outside the item, 1vh on the top and bottom */
    border-radius: 1vh;
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.1);
}

.navlist .navitem a:hover {
    background-color: #f0f0f0; /* Optional: Slight background change on hover for better user experience */
}

.header-1, .header-2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-1 .navbar, .header-2 .navbar{
    display: flex;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
}

.header-1 .navitem, .header-2 .navitem {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.header-1 .navitem:first-child, .header-2 .navitem:first-child {
    flex-grow: 1; /* The logo should take space but be centered */
    justify-content: center; /* Center the logo */
    padding-left: 5vh;
}

.header-1 .navitem:last-child, .header-2 .navitem:last-child {
    flex-grow: 0; /* No extra space on the settings icon */
    
}

.header-1 #settings-1 a, .header-2 #settings-1 a {
    padding-left: 2vh;
    padding-right: 2vh;
}

.nav-button {
    position: fixed;
    background-color: rgba(83, 89, 240, 1);
    padding: 1vh;
    width: 100%;
    max-width: min(calc(100vw - 4vh), 94vh);
    margin: 1vh;
    border-radius: 1vh;
    cursor: pointer;
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    text-align: center; /* Center text */
    bottom: 7vh;
}
.log-in-1 .buttons{
    position: fixed;
    width: min(calc(100% - 2vh), 98vh);

    bottom: 7vh;
}
.log-in-1 .navbar .nav-button {
    position:static;
    width: calc(50% - 4vh);
    
}

.nav-button:hover {
    background-color: rgba(68, 75, 234, 1);
    width: calc(100% - 4vh); /* Removed changing width on hover */
}

.log-in-1 .navbar .nav-button:hover {
    background-color: rgba(68, 75, 234, 1);
    width: calc(50% - 4vh); /* Removed changing width on hover */
}

.nav-button a {
    color: white;
    width: 100%;
    text-decoration: none; /* Remove underline from links */
}

/* Adjust the logo image size */
.header-1 .logo, .header-2 .logo {
    height: calc(100% - 2vh); /* Reduce the logo height by 2vh */
    width: auto; /* Maintain aspect ratio */
    display: block;
    max-width: 80vw;
}

/* Adjust the settings icon size */
.header-1 .settings-icon, .header-1 .settings-icon {
    height: calc(100% - 2vh); /* Reduce the settings icon height by 2vh */
    width: auto; /* Maintain aspect ratio */
    display: block;
}

.dog-walk {
    background-color: rgb(255, 255, 255);
    margin: 1vh;
    border-radius: 1vh;
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: flex-start; /* Align items to the left */
    align-items: center;
}

.dog-walk-info {
    background-color: rgb(255, 255, 255);
    margin: 1vh;
    padding: 1vh;
    border-radius: 1vh;
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.1);
}

.membership-alternative{
    color: black;
    background-color: rgb(255, 255, 255);
    margin: 1vh;
    padding: 1vh;
    border-radius: 1vh;
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.1);
}

.dog-walk {
    display: flex;
    flex-direction: column; /* Ensures the bottom div appears below the top-dog-walk */
}

.dog-walk .top-dog-walk {
    border-radius: 1vh;
    display: flex;
    justify-content: space-between; /* Aligns left to the left and right to the right */
    align-items: center;
    width: 100%;

}

.dog-walk .top-dog-walk .left {
    flex-grow: 1;
    max-width: 90%;
}

.dog-walk .top-dog-walk .right {
    white-space: nowrap;
    margin-left: 1vh;
    width: auto;
    flex-shrink: 0;
    text-align: right; /* Ensure content is aligned to the right */
}


.top-dog-walk {
    color: black;
}

.dog-walk .bottom-dog-walk{
    width: calc(100vw - 2vh);
    max-width: 98vh;
    height: 5vh;

}

.dog-walk p{
    font-size: 1em;
    margin: 1vh;
}

.direction-button {
    margin: 0 2vh 1vh 2vh; /* Centers the button horizontally */
    border: none;
    max-width: 94vh;
    border-radius: 1vh;
    background-color: rgba(83, 89, 240, 1);
    color: white;
    font-size: 1em;
    height: 4vh;
    cursor: pointer;
    display: block; /* Ensures it takes up the specified width */
    text-align: center; /* Centers the text horizontally */
    line-height: 4vh; /* Centers the text vertically */
}

.direction-button:hover{
    background-color: rgba(68, 75, 234, 1);
}



a {
    text-decoration: none;
}

.top {
    border-radius: 1vh 1vh 0 0;
    position: fixed;
    top: 6vh;
    width: 100%;
    max-width: min(calc(100vw - 2vh), 98vh);
    height: 6vh;
    background-color: rgba(83, 89, 240, 1);
}

/* Hover styles */
.top .navitem#left:hover {
    border-radius: 1vh 0 0 0;
    background-color: rgba(68, 75, 234, 1);
}

.top .navitem#right:hover {
    border-radius: 0 1vh 0 0;
    background-color: rgba(68, 75, 234, 1);
}

/* Active styles using the active class */
.top .navitem#left.active {
    border-radius: 1vh 0 0 0;
    background-color: rgba(68, 75, 234, 1);
}

.top .navitem#right.active {
    border-radius: 0 1vh 0 0;
    background-color: rgba(68, 75, 234, 1);
}

.top h2 {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    white-space: nowrap; /* Prevent text from wrapping to a new line */
}

.buttons .filter-button {
    background-color: rgba(83, 89, 240, 1);
    position: absolute; /* Position relative to the parent div */
    bottom: 17vh; /* Aligns to the bottom of the parent div */
    right: 0;  /* Aligns to the right of the parent div */
    margin-right: 2vh; /* Optional: Adds some space from the edges */
    height: 8vh;
    width: 8vh;
    border-radius: 4vh;
    
    /* Flexbox for centering */
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */

    text-decoration: none;
    color: white;
    /*box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);*/
}

.buttons #show-more {
    background-color: rgba(83, 89, 240, 1);
    position: absolute; /* Position relative to the parent div */
    bottom: 0; /* Aligns to the bottom of the parent div */
    left: 0;  /* Aligns to the right of the parent div */
    margin: 2vh; /* Optional: Adds some space from the edges */
    height: 8vh;
    width: 8vh;
    border-radius: 4vh;
    
    /* Flexbox for centering */
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */

    text-decoration: none;
    color: white;
    /*box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);*/
}

.buttons .filter-button:hover{
    background-color: rgba(68, 75, 234, 1);
}

/* Style for the filter section */
.filter-section, .add-dog-section{
    background-color: white;
    padding: 1vh;
    margin: 1vh;
    border-radius: 1vh; /* Optional: Adds rounded corners */
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow */
}

/* Style for the section title */
.section-title {
    margin: 0;
    font-weight: bold;
    font-size: 1.2em;
    position: relative;
    padding-bottom: 1vh; /* Space between the title and the date selectors */
}

/* Style for the date-time selectors container */
.date-time-selector {
    display: flex;
    gap: 1vh; /* Space between the date selector items */
}

/* Style for each date selector item */
.date-selector-item {
    display: flex;
    flex-direction: column;
    flex: 1; /* Makes each item take equal width */
}

input[type="submit"], .button-participate button, .membership-1 .buttons, .change-membership-1 .buttons, .new-membership-1 .buttons, .go-back-button-terms button {
    width: calc(100% - 2vh);
    margin: 1vh;
    margin-top: 0;
    padding: 1vh;
    border: none;
    border-radius: 1vh;
    background-color: rgba(83, 89, 240, 1);
    color: white;
    font-size: 1em;
    cursor: pointer;
    height: 6vh;
}

.button-participate button, .create-dog-walk-1 input[type="submit"], .go-back-button-terms button {
    position: fixed;
    bottom: 7vh;
    width: min(calc(100% - 4vh), 96vh);
}

input[type="submit"]:hover, .button-participate button:hover , .membership-1 .buttons:hover, .change-membership-1 .buttons:hover, .new-membership-1 .buttons:hover , .go-back-button-terms button:hover {
    background-color: rgba(68, 75, 234, 1);
}

.range-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1vh 0 1vh 0;
    margin: 1vh 0 0 0;
    height: 2vh;
}

input[type="range"] {
    position: absolute;
    width: calc(100% - 4.5vh);
    pointer-events: none; /* Disable pointer events on the track */
    -webkit-appearance: none; /* Remove default appearance in WebKit browsers */
    appearance: none;
}

input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 1vh; /* Adjust the slider thickness */
    background: rgba(83, 89, 240, 1); /* Background color for the track */
    border-radius: 1vh; /* Round the track */
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; /* Remove default styling */
    appearance: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
    pointer-events: all; /* Allow pointer events on the slider thumb */
    background-color: rgba(83, 89, 240, 1);
    width: 3vh; /* Thumb width */
    height: 3vh; /* Thumb height */
    border-radius: 50%; /* Rounded thumb */
    top: calc(50% - 1.5vh); /* Center the thumb vertically */
}

input[type="range"]::-moz-range-track {
    width: 100%;
    height: 1vh; /* Adjust the slider thickness */
    border-radius: 1vh; /* Round the track */
}

input[type="range"]::-moz-range-thumb {
    height: 3vh; /* Size of the thumb */
    width: 3vh; /* Size of the thumb */
    border-radius: 50%; /* Round the thumb */
    cursor: pointer;
    position: relative;
    z-index: 2;
    pointer-events: all; /* Allow pointer events on the slider thumb for Firefox */
    background-color: rgba(83, 89, 240, 1);
    top: calc(50% - 1.5vh); /* Center the thumb vertically */
}

input[type="number"],
input[type="date"],
input[type="time"]{
    width: calc(100% - 2vh);
    padding: 1vh;
    border: none;
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.1);
    border-radius: 1vh;
    background-color: rgba(250, 250, 250, 1);
}

.filter-section{
    background-color: #ffffff;
    margin: 1vh;
    padding: 1vh;
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.1);
}


/* Container for the input fields */
.input-fields {
    text-align: left; /* Align text to the left */
    padding: 1vh;
}

.filter-1 .input-fields, .add-dog-1 .input-fields{
    padding: 0;
}

/* Style for input fields */
input[type="email"], input[type="password"], input[type="text"], #code, #username, #date-time, #confirmation{
    width: calc(100%); /* Full width of the container */
    padding: 1vh;
    margin: 1vh 0 1vh 0;
    border: none;
    border-radius: 1vh; /* Rounded corners */
    box-sizing: border-box; /* Include padding in width */
    background-color: #ffffff;
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.1);

}


.dog-walk-participants {
    background-color: #ffffff;
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.1);
    margin: 1vh;
    border-radius: 1vh;
    padding: 1vh;
    margin-bottom: 9vh;
}

.dog-walk-participant {
    background-color: rgba(250, 250, 250, 1);
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.1);
    border-radius: 1vh;
    padding: 1vh;
    margin: 1vh 0 0 0;
    display: flex;
    justify-content: space-between; /* Aligns items to the edges */
    align-items: center;            /* Vertically centers items */
}



.dog-walk-participant p {
    margin: 0;
}

.create-dog-walk-1 .content {
    overflow-y: hidden;
}

.dog-image {
    height: 6vh;
    width: 6vh;
    margin: 0;
    padding: 0;
    border-radius: 3vh;
}

.show-dog-info-button{
    border: none;
    height: 6vh;
    width: 6vh;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

#dog-info{
    display: none; 
    position: fixed; 
    background-color: rgba(250, 250, 250, 1); 
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.1);
    padding: 1vh; 
    height: 3vh;
    border-radius: 1vh;
}
#dog-info p {
    margin: auto;
}

.my-dogs-button{
    background-color: rgba(250, 250, 250, 1);
    border: none;
    border-radius: 1vh;
    height: 6vh;
    padding: 1vh;
}

.my-dogs-button:hover{
    background-color:#f0f0f0;
}

.create-dog-walk-1-form{
    height: calc(100vh);
}

.create-dog-walk-1-form-inputs{
    display: flex; 
    flex-direction: column; 
    height: 100%; 
    max-height: 100%;
}

.create-dog-walk-1-form-input-fields{
    margin: 1vh;
}

.create-dog-walk-1-form-map-wrapper{
    margin: 1vh;
    height: inherit;
}

.create-dog-walk-1-form-map{
    /*background-color: pink;*/
    max-height: 40vh;
    border-radius: 1vh;
}

.dog-walk-1-map{
    max-height: 40vh;
    border-radius: 1vh;
    margin: 1vh;
    height: inherit;
}
.dog-walk-1-map #map{
    border-radius: 1vh;
}


#map {
    height: calc(100%);
}

.create-dog-walk-1-submit-button{
    background: brown;
}

.bottom-space{
    background-color:transparent;
    height:30vh;
}

.errors {
    background-color: transparent;

}
.errors p {
    color: red;
    margin: 0;
    padding: 1vh;
}

.requirements h3 {
    margin: 1vh;
}

.requirements ul {
    list-style:disc inside; /* Punkter på listan */
    margin: 1vh;
    padding: 0;
}

.requirements li {
    margin-bottom: 2vh; /* Utrymme mellan listpunkter */
    line-height: 1.6; /* Ökar läsbarheten */
}

.delete-button-image {
    background: none; /* Removes background color */
    border: none; /* Removes border */
    cursor: pointer; /* Makes it look clickable */
}

.membership-1 .membership-alternative {
    border:none;
    width: calc(100% - 2vh);
    text-align: left;
    padding-left: 1vh; /* Add some padding for spacing */
    display: inline-block;
    overflow: visible;
}

.membership-1 div.membership-alternative{
    width: calc(100% - 4vh);
}

.membership-1 .membership-alternative p {
    display: block;
    visibility: visible;
    overflow: visible;
}

.membership-1 .content h2 {
    margin: 1vh;
}

.change-membership-1 .content h3, .new-membership-1 .content h3 {
    margin: 1vh;
}

.change-membership-1 .content p, .new-membership-1 .content p {
    margin: 1vh;
}

.terms-1 .content h3, .terms-1 .content h2, .terms-1 .content p , .terms-1 .content ul{
    margin: 1vh;
}

.about-1 .content h2 {
    font-size: 1.5em;
    color: #444;
    margin-top: 20px;
}

/* Paragrafer */
.about-1 .content p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}

/* Listor */
.about-1 .content ul, .about-1 .content ol {
    margin: 1vh 0;
    padding-left: 20px;
}

.about-1 .content ul li, .about-1 .content ol li {
    font-size: 1em;
    color: #666;
    margin-bottom: 5px;
}

/* Markerade delar */
.about-1 .content .highlight {
    color: #2c3e50;
    font-weight: bold;
}

/* Kontaktinformation */
.about-1 .content a {
    color: #2980b9;
    text-decoration: none;
    font-weight: bold;
}

.about-1 .content a:hover {
    text-decoration: underline;
}

.about-1 .content h2, .about-1 .content ul, .about-1 .content p, .about-1 .content ol{
    margin: 1vh;
}


.no-result, .center-center {
    text-align: center;     /* Centers text within the element */
    position: absolute;
    top: 40%;               /* Moves the element 50% down from the top of the viewport */
    left: 50%;              /* Moves the element 50% right from the left of the viewport */
    transform: translate(-50%, -50%); /* Centers the element relative to its own width and height */
}

.footer-2 .navbar .navitem a {
    color: black;
    text-decoration: none; /* Optional: removes underline */
}

.log-in-1 #forgot-password {
    margin: 1vh;
    text-decoration: underline;
}

.membership-alternative {
    font-weight: normal; /* Standard opposite of bold */
    font-size: 1em;
}


/* Hide scrollbar for Chrome, Safari, and Edge */
::-webkit-scrollbar {
    display: none;
}
.landing-page-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distributes elements evenly */
    align-items: center;
    text-align: center;
    background-image: url('https://hundpromenad.se/images/bundo-kim-7w8OdJlIHcI-unsplash.jpg');
    background-size: cover;
    background-position: center;
}

.landing-page-2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distributes elements evenly */
    align-items: center;
    background-size: cover;
    background-position: center;
}

.terms-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distributes elements evenly */
    align-items: center;
    background-size: cover;
    background-position: center;
}

.landing-page-1-top,
.landing-page-1-middle,
.landing-page-1-bottom,
.landing-page-2-content{
    width: calc(100% - 4vh);
    max-width: 100vh;
    padding: 2vh;
}

.landing-page-2-content h2{
    margin-left: 1vh;
}

.landing-page-1-top {
    background-color: rgba(255, 255, 255, 0.8); 
}

.landing-page-1-middle {
    position: relative;
    height: 50vh; /* Ensures it takes up available space */
}

.landing-page-1-bottom {
    background-color: rgba(255, 255, 255, 0.8); 
}

.landing-page-1 .form-section, .landing-page-1 .email-section {
    margin: 10px;
}

.landing-page-1 h1, .landing-page-1 h2, .landing-page-1 h3 {
    color: #333;
}

.landing-page-1 form {
    display: flex;
    flex-direction: column;
}

.landing-page-1 label {
    margin: 0;
}

.landing-page-1 input {
    border: none;
    border-radius: 1vh;
    height: 5vh;
}

.landing-page-1 button {
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 1vh;
    cursor: pointer;
    height: 5vh;
}



.landing-page-1 h3{
    display: inline-block; /* Gör att h3-elementen ligger på rad */
    margin: 1vh;
    font-weight: normal;
    color: black;
    font-size: 16px;
}

.landing-page-1 .credits {
    position: absolute;
    bottom: 0;
    right: 0;
    color: white;
    margin-right: 2vh;
}

.guideline-1video-container{
    width: 92vh;
}

.scroll-search-1 .content h3, .my-dog-walks-1 .content h3, .my-dog-walks-2 .content h3 {
    margin: 1vh;
}

.scroll-search-1 .content p, .scroll-search-1 .content li, .my-dog-walks-1 .content p, .my-dog-walks-2 .content p  {
    margin: 1vh;
}

label[for="terms"] {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  margin: 0;
  max-width: 500px; /* valfritt: styr radbrytning */
}

label[for="terms"] input[type="checkbox"] {
  margin-top: 0; /* justera vertikal placering */
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  cursor: pointer;
}

label[for="terms"] span {
  line-height: 1.5;
}

.landing-page-1 a {
    color: #0056b3;
    text-decoration: underline;
}

#subtitle-landing-page-1{
    font-size: 1.2rem;
}

#email-input-landing-page-1{
    font-size: 16px;
}

.email::placeholder {
  color: black;
  opacity: 1; /* Ensures it's not faded */
}

.email::-webkit-input-placeholder {
  color: black;
}

.email:-moz-placeholder {
  color: black;
  opacity: 1;
}

.email::-moz-placeholder {
  color: black;
  opacity: 1;
}

.email:-ms-input-placeholder {
  color: black;
}

input[type="email"], input[type="password"]{
    outline-color: grey; 
    height: 7vh;
    font-size: 1rem;
    border: 1px solid grey;
}

/* Focus state for input fields */
input[type="email"]:focus, input[type="password"]:focus {
    border-color: rgba(83, 89, 240, 1); /* Change border color on focus */
    outline-color: black; 
}

#scroll-search-1 a, #create-dog-walk-1 a, #my-dog-walks-1 a {
    color: black;
}

#create-account {
    height: 7vh;
}

.landing-page-1 #add-dog-link {
    color: #fff;
    padding: 1vh;
    margin: 1vh;
    background-color: #007BFF;
    border: none;
    border-radius: 1vh;
    cursor: pointer;
    height: 7vh;
    font-size: 1.2em;
    text-decoration: none;
}

.landing-page-1 button:hover {
    background-color: #0056b3;
}  

.landing-page-1 #add-dog-link:hover {
    background-color: #0056b3;
}  


