
/* 
    Created on : 14 Feb 2016, 11:38:00 PM
    Author     : David
*/

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

@font-face{
    font-family: "Oleo Script";
    src: url(OleoScript-Regular.ttf);
}

@font-face{
    font-family: "Oleo Script";
    src: url(OleoScript-Bold.ttf);
    font-weight: bold;
}

@font-face{
    font-family: "AllThingsPink";
    src: url("All Things Pink.ttf");
    font-weight: bold;
}

@keyframes flash {
    0% {
        text-shadow: 1px 1px 2px orange;
    }
    100% {
        text-shadow: 1px 1px 2px orange, 0 0 25px orangered, 0 0 5px red;
    }
}

body{
    background: linear-gradient(pink, white);
    font-family: "Oleo Script", cursive;
    color: #8B34A7;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

u { 
    text-decoration: underline;
}

hr {
    width: 50%;
    margin: 10px auto;
}

ul {
    list-style-image: url('images/star.png');
}

#news{
    background: yellow;
    color: black;
    font-size: 1.5em;
    font-family: "AllThingsPink", sans-serif;
    text-align: center;
    padding: 0 5px;
}

#highlight{
    color: black;
    text-shadow: 1px 1px 2px orange, 0 0 25px orangered, 0 0 5px red;
    font-family: "Oleo Script", cursive;
    animation-name: flash;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate; 
    text-align: center;
}

#COVID{
    color: purple;
    text-shadow: 1px 1px 2px orange, 0 0 25px orangered, 0 0 5px red;
    font-family: "Oleo Script", cursive;
    animation-name: flash;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate; 
    text-align: center;
}

#imageleft{
    width: 10%;
    height: auto;
    left: 0;
    top:  0;
    position: absolute;
    z-index: 1;
}

#imageright{
    width: 15%;
    height: auto;
    position: absolute;
    left: 85%;
    z-index: 1;
}

.question{
    color: purple;
    font-family: "Oleo Script", cursive;
    margin-top: 30px;
}

.answer{
    font-size: 0.8em;
}

.NaM {
    font-style: italic;
    color: #9269FC;
}

header{
    color:#BADDDD;
    background-color: #9269FC;
    text-align: center;
    text-shadow: 2px 2px black;
    font-size: 1.5em;
    letter-spacing: 4px;
    margin: 0px;
}

h1{
    font-size: 3em;
    z-index: 2;
    position: relative;
}

h2{
    font-family: monospace;
    position: relative;
    left: 10%;
    top: -18px;
    display: inline;
}

nav{
    background-color: #CEC8EF;
    text-align: center;
}

.button {
    background-color: #7FA1D4;
    color: white;
    padding: 5px 15px;
    font-size: 1.8em;
    text-decoration: none;
    border: solid white;
    display: inline-block;
    margin: 10px;
    border-radius: 15px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.button:hover{
    background-color: #F0C4D4;
    box-shadow: 0 4px 16px 0 rgba(0,0,0,0.2), 0 2px 20px 0 rgba(0,0,0,0.19);
    transform: translateY(4px);
}

h3 {
    color: #9269FC;
    text-align: center;
    font-size: 1.5em;
    font-family: "Oleo Script", cursive;
    margin: 10px auto;
}

.box1{
    float: left; 
    width: 35%;
    text-align: center;
}

.box2{
    color: #AE45C4;
    font-size: 1.8em;
    padding: 5px 5%;
    width: 65%;
    float: right;
    font-family: "AllThingsPink", sans-serif;
    padding: 10px;
 }

.bigbox{
    color: #AE45C4;
    font-size: 2em;
    padding: 5px 10px;
    max-width: 900px;
    margin: 0 auto;
    font-family: "AllThingsPink";
}

.mainimage{ 
    width: 100%;
    max-width: 400px;
}

.carlaimage{
    width: 60%;
    max-width: 400px;
    border: 10px solid white;
    outline: 1px solid lightgray;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    margin: 30px auto;
    padding: 0;
}

.details{
    text-align: left;
    padding-left: 10%;
    color: #BD559C;
    font-size: 1em;
    /*font-size: 3vw;*/
    border: 5px solid #A50B5E;
    border-radius: 25px; 
    font-family: "Oleo Script", cursive;
    margin: 20px 0;
    word-wrap: break-word;
    word-break: break-all;

}

.flexitems{
    display: flex;
    flex-wrap: wrap;
}

.icon{
    width: 60px;
}

.sideimagebox{
    float:right;
}

#testimonial{
    font-size: 0.7em;
    padding: 3%;
    background-color: ghostwhite;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 25px;    
}

/*#testimonial:hover{
    background-color: white;
}*/

.arrow{
    /*background-color: pink;*/
    border-radius: 50%;
    vertical-align: top;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    padding: 10px;
    font-size: 2em;
    transition: color 1s, background-color 1s;
}

.arrow:hover{
    /*background-color: lightcoral;*/
    color: lightcoral;
}

.sign{
    font-size: 1.2em;
    text-align: center;
}

form{
    text-align: left;
    font-size: 0.8em;
}

input, textarea{
    font-family: "AllThingsPink";
    font-size: 0.8em; 
    width: 100%;
}

@media screen and (max-width: 750px){
    h1{
        font-size: 15vw;
    }
    
    h2{
        font-size: 7vw;
    }
    
    .box1{
        max-width: 100%;
        width: 100%;
    }
    .box2{
        max-width: 100%;
        width: 100%;
    }
    .sideimagebox{
        float: none;
        text-align: center;        
    }
    .carlaimage{
        margin: 5px auto;
    }
    .details{
        padding-left: 5%;
        font-size: 5vw;
    }
    .icon{
        width: 50px;
    }
    input{
        width: 100%;
    }
     
}
