*
{
    font-family: 'Didact Gothic', sans-serif;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

body{
    background-color: lightgray;
}

.carousel{
    width: 600px;
    height: 400px;
    margin:auto;
    display: none;
}

.carousel-caption{
    -webkit-text-stroke: 1px black;
    color: #0c4299;
    
}

.carousel h4{
    margin-top: 10px;
}

.dessert{
    width: 600px;
    height: 400px;
    border-radius: 20%;
    border: solid black 3px;
}

.forSmallScreens{
    width: 75%;
    margin: auto;
}

.forSmallScreens p{
    text-align: center;
}

.forSmallScreens img{
    width: 300px;
    height: 225px;
    margin: auto;
}

.logo{
    color: black;
    font-family: 'Abril Fatface', cursive;
    text-align: center;
    font-size: 50px;
}

h1, h3, h5{
    font-family: 'Pacifico', cursive;
    text-align: center;
}

h4{
    text-align: center;
}

h5{
    font-size: 30px;
}

.whiteUnderlay{
    background-color: rgba(255,255,255, 0.8);
    border-radius: 10px;
}

 .forLargeScreens{
        display: none;
    }


/*Tablets and larger*/
@media screen and (min-width: 768px){
    .forSmallScreens{
        display: none;
    }

    .carousel{
    display: block;
    }
    
    .forLargeScreens{
        display: none;
    }
}

@media screen and (min-width: 1900px){
    
    .carousel{
    display: none;
    }
    
    .forLargeScreens{
        display: block;
    }
    
    p{
        font-size: 25px;
        width: 600px;
    }
    
    h3{
    text-align: left;
}
}
