/* CSS files add styling rules to your content */



body {
    margin: 0;
    font-family: halyard-display, sans-serif;
    font-weight: 350;
    letter-spacing: .02rem;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
    -webkit-overflow-scrolling: touch;
    overflow-x: none;
    background: #1A1A1A;
    color: white;

}

.wrapper-ver {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 90vh;
}

.header {
    position: fixed;
    display: flex;
    min-width: 90%;
    justify-content: space-between;
    padding-top: 5%;
    padding-left: 5%;
    padding-bottom: 1%;
    padding-right: 5%;
    align-items: center;
    z-index:9999;
    -webkit-transition: all ease-out .4s;
    -moz-transition: all ease-out .4s;
    -o-transition: all ease-out .4s;
    transition: all ease-out .4s;
    font-weight: 600;
    font-size: 14pt;
}

a:any-link {
    text-decoration: none;
    color: inherit;
    -webkit-transition:  .2s ease-in-out;
    -moz-transition:  .2s ease-in-out;
    -o-transition:  .2s ease-in-out;
    -ms-transition:  .2s ease-in-out;
    transition:  .2s ease-in-out;

}

a:hover {
    opacity: 0.5;
}


.button {
    padding-top: 1em;
    padding-bottom: 1em;
    cursor: pointer;
    transition: opacity 0.5s;
    border-radius: 40px;
    color: white;
    max-width: 250px;
    text-align: center;
    margin-bottom: 15px;
}

.github {
    background-color: white;
    color: black;
}

.button:hover {
    opacity: 0.6;
}

.slides {
    color: white;
    border: 1px solid white;
}

.wrapper {
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.product {
    max-width: 52%;
}

img {
    object-fit: contain;
}

.image {
    max-width: 80%;
}

.tagline {
    max-width: 300px;
    margin-bottom: 35px;
}

h1 {
    font-size: 32pt;
    line-height: 1em;
    font-weight: 600;
}

.footer {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
}