/* Base Styles */
body {
    margin: 0;
    padding: 0;
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    background-color: white;
}

.separator {
    clear: both;
    text-align: center;
    margin: 10px 0;
}

.content-wrapper {
    max-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.image-link {
    margin: 0 1em;
}

.main-content {
    text-align: center;
}

.text-content {
    margin: 10px 0;
}

/* Typography */
h1 {
    background-color: white;
    color: #313f47;
    font-size: 1.65em;
    letter-spacing: 0.22em;
    line-height: 1.5;
    margin: 0 0 0.525em;
    padding: 0;
    text-transform: uppercase;
}

span {
    background-color: white;
    color: #313f47;
    font-size: 13.3333px;
    letter-spacing: 2.66667px;
    text-transform: uppercase;
}

/* Buttons */
.btn {
    appearance: none;
    border: 1px solid rgb(255, 116, 150);
    border-radius: 4px;
    color: #ff7496;
    cursor: pointer;
    height: 2.75em;
    line-height: 2.75em;
    padding: 0 1.5em;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
    display: inline-block;
    text-decoration: none;
    background-color: transparent;
}

.btn-lg {
    font-size: 13.3333px;
}

.btn-danger {
    color: #ff7496;
    border-color: #ff7496;
}

.stylee {
    background-color: white;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive styles */
@media only screen and (max-width: 768px) {
    h1 {
        font-size: 1.3em;
        letter-spacing: 0.15em;
    }
    
    span {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .btn {
        height: 2.5em;
        line-height: 2.5em;
        padding: 0 1.2em;
    }
}

@media only screen and (max-width: 480px) {
    h1 {
        font-size: 1.1em;
        letter-spacing: 0.1em;
    }
    
    span {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .btn {
        height: 2.3em;
        line-height: 2.3em;
        padding: 0 1em;
        font-size: 12px;
    }
}