body {
    margin: 0;
}

.main-header {
    margin: 0;
    color: #54595f;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
}

h1 {
    text-align: center;
    margin: 0;
    font-size: 36px;
    font-weight: 100;
}

ul {
    padding: 0;
}

.main-logo {
    width: 100px;
    margin: 50px auto 35px auto; 
}

.main-logo img {
    max-width: 100px;;
}

.menu {
    width: 100%;
    padding: 20px 0;
    background-color: #ffffff;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
}

.menu-item {
    display: inline-block;
    width: 33%;
    text-align: center;
    font-weight: 500;
    color: #00A8E5;
    font-size: 24px;
    text-decoration: none;
    padding: 10px 0;
}

.menu-item {
    font-size: 18px;
    font-weight: 700;
    color: #00A8E5;
    cursor: pointer;
}

.menu-item:hover {
    color: #00AEB9;
}

.main-item {
    display: flex;
    flex-direction: row;
    align-items: center; /* Vertically centers the text */
    justify-content: center;
}

.main-image {
    flex: 1;
}

.main-image img {
    max-width: 80%;
    margin: auto;
}

.main-text {
    flex: 1;
    padding: 20px 80px 20px 0;
    background-color: #f1f1f1;
    text-align: justify;
    font-size: 24px;
    font-weight: 100;
    line-height: 35px;
}

.main-body {
    width: 100%;
    margin: auto;
    margin: 0;
    color: #54595f;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
    background-color: #f1f1f1;
}

.divider {
    border-bottom: 5px solid #ffffff;
}

#hand-apps, #hand-www {
    position: absolute;
    left: 35%;
    width: 5px;
    height: 20px;
    transform: translate(0, -10px);
    background-color: #e95224;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.main-footer {
    background-color: #ffffff;
    height: 100px;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
    bottom: 0;
    border-top: 1px solid #e95224;
}

.normal {
    background-color: transparent;
}

.parallax-apps,  .parallax-www, .parallax-uiux {
    background-image: url('images/apps.png');
    background-attachment: fixed;
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
.parallax-apps .content, .parallax-www .content, .parallax-uiux .content {
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.parallax-www {
    background-image: url('images/www.png');
}
  
.parallax-uiux {
    background-image: url('images/ui_ux.png');
}

.font-medium {
    font-weight: 500;
}

.text-red {
    font-weight: 500;
    color: #D31317;
}

.text-orange {
    font-weight: 500;
    color: #E8521F;
}

.text-green {
    font-weight: 500;
    color: #00AEB9;
}

.store-logo {
    width: 20px;
    margin-right: 5px;
    transform: translate(0, 5px);
}

.hidden-message {
  opacity: 0;
  transition: opacity 0.5s ease-in-out; /* Adjust duration as needed */
  height: 0;
}

.footer-items {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footer-item {
    flex: 1;
    margin-top: 40px;
    text-align: center;
}

.footer-item a {
    font-weight: 700;
    text-decoration: none;
}

.footer-item a:hover {
    color: #00A8E5;
}

#message {
    background-color: #ffffff;
}

.send-message {
    font-weight: 700;
    cursor: pointer;
}

.send-message:hover {
    color: #00A8E5;
}

.message-input {
    width: 520px;
    margin: auto;
    padding: 50px 0 5px 0;
}

#message-textarea {
    width: 460px;
    margin-left: 10px;
    resize: none;
    outline: none;
    border: 1px solid #00A8E5;
    border-radius: 25px;
    padding: 20px;
    font-size: 18px;
    height: 250px;
}

#message-error {
    height: 20px;
    text-align: center;
}

.message-button {
    width: 100px;
    margin: auto;
    padding: 10px 0 50px 0;
}

#message-send-button {
    width: 100%;
    margin: auto;
    padding: 5px;
    color: #54595f;
    background-color: #ffffff;
    border: 1px solid #00AEB9;
    border-radius: 5px;
    box-shadow: -6px -6px 26px 0 hsla(0,0%,100%,.82),6px 6px 16px 0 hsla(35,18%,82%,.52);
    cursor: pointer;
}

#message-send-button:hover {
    box-shadow: -1px -1px 26px 0 hsla(0,0%,100%,.82),1px 1px 16px 0 hsla(35,18%,82%,.52);
}

.message-sent {
    cursor: default;
}

.message-sent:hover {
    color:#E8521F
}

@media only screen and (max-width: 1200px) {
    .main-image img {
        max-width: 100%;
    }
    .main-text {
        padding: 40px 80px;
    }
}

@media only screen and (max-width: 875px) {
    .main-item {
        flex-direction: column;
    }
    .main-image img {
        max-width: 100%;
    }
    .main-text {
        padding: 40px;
        background-color: #fff;
        font-weight: 300;
        text-align: left;
    }
    .menu {
        display: none;
    }
    .main {
        margin-top: 50px;
    }
    h1 {
        width: 100%;
        margin: 0 auto 40px auto;
        padding: 10px 0;
        font-size: 18px;
        font-weight: 700;
        color: #00A8E5;
        background-color: #fff;
    }
    .divider {
        border-bottom: 1px solid #E8521F;
    }
    .parallax-apps, .parallax-www, .parallax-uiux {
        background-position: bottom;
    }
    .main-footer {
        height: 290px;
    }
    .footer-items {
        flex-direction: column;
    }
    .message-input {
        width: 250px;
    }
    #message-textarea {
        width: 200px;
        margin-left: 5px;
    }
}