/*Home Page*/

body {
    font-family: Arial, Helvetica, Arial, Helvetica, sans-serif;
}

#menu {
    padding: 5px 10px;
    display: flex;
    align-items: center;
}

.menu-item {
    font-size: 14px;
    color: 000;
    margin: 0px 10px;
    text-decoration: none;
}

.menu-item:hover {
    text-decoration: underline;
}

#profile-pic {
    height: 32px;
    width: 32px;
    border-radius: 16px;
}

#profile-pic:hover {
    box-shadow: 0px 0px 5px #c2c2c2;
}

#store-link{
    margin-right: auto;
}

#search {
    margin-top: 120px;
    text-align: center;
}

#main-logo {
    width: 272px;
}

#search-bar {
    height: 34px;
    font-size: 17px;
    border-radius: 17px;

    border: 1px solid #c2c2c2;
    width: 90%;
    max-width: 500px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 30px;

}

#search-bar:hover,
#search-bar:focus {
    box-shadow: 0px 0px 5px #c2c2c2;
}

#search-buttons {
    display: flex;
    justify-content: center;
}

.search-button {
    margin: 8px;
    padding: 8px 15px;
    cursor: pointer;

    background-color: #f8f9fa;
    border: 1px solid #4b4b4b;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 20px;
}

.search-button:hover {
    box-shadow: 0px 0px 5px #c2c2c2;
}

/*Profile Page*/

.home-button {
    justify-content: center;
    align-self: center;

    cursor: pointer;
    background-color: #214945;
    border: 1px solid #10322e;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 20px;
}

#home-button:hover {
    cursor:pointer
}

.my-page {
    background-color: #10322e;
}

#profile-text {
    color: #e8e2cb;
    font-family: Arial, Helvetica, sans-serif, sans-serif;
    text-align: center;
    font-size: 75px;
    text-shadow: #1a3b35;
}

#meImg {
    display: table;
    margin: auto;
    width: 384px;
    height: 512px;
}

#quote {
    color: #f8f9fa;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
    font-size: 25px;
    font-stretch: expanded;
    font-style: oblique;
}

.paragraph {
    display: block;
    color: #e8e2cb;
    line-height: 1.6;
    margin: 0px 40px;
    font-size: 20px;
}



.menu-bar {
    background-color: #10322e;
    border: #10322e;
    height: 80px;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
}

.menu-bar ul {
    list-style: none;
    display: flex;
}

.menu-bar ul li {
    padding: 10px 10px;
    position: relative;
}

.menu-bar ul li a {
    color: #e8e2cb;
    text-decoration: none;
    font-size: 20px;
}

.logo {
    color: #5d1e68;
    font-size: 40px;
}

.logo span {
    color: #000;
}

.dropbtn {
    background-color: #10322e;
    color: #e8e2cb;
    padding: 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
  
.dropdown {
    position: relative;
    display: inline-block;
}
  
.dropdown-content {
    display: none;
    position: absolute;
    margin-top: 15%;
    background-color: #214945;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px #10322e;
    z-index: 1;
}
  
.dropdown-content a {
    color: #e8e2cb;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
  
.dropdown-content a:hover {
    background-color: #214945
}
  
.dropdown:hover .dropdown-content {
    display: block;
}
  
.dropdown:hover .dropbtn {
    background-color: #214945;
}

/*New*/

*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

.carousel-container{
    margin: auto;
    overflow: hidden;
    max-height: 500px;
    position: relative;
}

.carousel-slide{
    margin: auto;
    display: flex;
    flex-direction: column;
    height: 500px;
    align-items: center;
}

.carousel-slide img{
    height: 500px;
    align-items: center;
}

#nextBtn{
    position: absolute;
    top: 50%;
    z-index: 10;
    right: 5%;
    font: 15px;
    opacity: 0.5;
    cursor: pointer;
}

#prevBtn{
    position: absolute;
    top: 50%;
    z-index: 10;
    left: 5%;
    font: 15px;
    opacity: 0.5;
    cursor: pointer;
}

/*End*/

/*Resume*/

#resume{
    margin: 0 auto;
    background-color: #214945;
}