* {
    padding: 0px;
    margin: 0px;
}

.main-header {
    background-color: white;
    display: flex;
    flex-direction: row;
    height: 100px;
    position: fixed;
    top: 0;
    width: 100%;
}

.main-header-left {
    display: flex;
    align-items: center;
    width: 250px;
}

.main-header-right {
    display: flex;
    align-items: center;
    width: 550px;
}

.main-header-middle {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-header-middle input {
    background-color: #e2e2e2;
    display: flex;
    width: 95%;
    height: 50px;
    border-radius: 15px;
    border: none;
    padding-left: 15px;
    font-size: 16px;
    font-family: poppins, sans-serif;
}

.main-header-middle input:hover {
    background-color: #cecece;
    cursor: text;
}
.main-header-middle input:focus {
    background-color: #cecece;
    outline: none;
}

.pinterest-logo {
    width: 35px;
    height: auto;
    margin-right: -5px;
    margin-left: 20px;
}

.pinterest-logo-text {
    color: red;
    font-size: 20px;
    font-weight: bold;
    display: inline;
    font-family: poppins, sans-serif;
    margin-right: 0px;
}

.explore-button {
    background-color: transparent;
    color: black;
    height: 45px;
    border: none;
    border-radius: 22px;
    padding: 15px;
    margin-right: 20px;
    margin-left: 20px;
    font-size: 15px;
    cursor: pointer;
    font-weight: bold;
    font-family: poppins, sans-serif;
}

.explore-button:hover {
    background-color: #cfcfcf;
    cursor: pointer;
}

.pinterest-logo-text:hover {
    cursor: pointer;
}

.pinterest-logo:hover {
    cursor: pointer;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.main-header-right-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    padding-left: 25px;
}

.main-header-right-links a {
    color: rgb(35, 86, 255);
    font-size: 17px;
    display: inline;
    font-family: poppins, sans-serif;
    text-decoration: none;
}

.main-header-right-links a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.main-header-right-login {
    background-color: rgb(243, 11, 11);
    color: white;
    height: 45px;
    border-radius: 12px;
    padding: 15px;
    margin-left: 25px;
    margin-right: 10px;
    border: none;
    font-size: 15px;
    font-weight: bold;
    font-family: poppins, sans-serif;
}

.main-header-right-login:hover {
    background-color: rgb(200, 9, 9);
    cursor: pointer;
}

.main-header-right-signin {
    background-color: #cfcfcf;
    color: black;
    height: 45px;
    border-radius: 12px;
    padding: 15px;
    margin-right: 10px;
    border: none;
    font-size: 15px;
    font-weight: bold;
    font-family: poppins, sans-serif;
}

.main-header-right-signin:hover {
    background-color: #b5b5b5;
    cursor: pointer;
}

.main-header-right-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
}
