@charset "UTF=8";

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap');
/* .fraunces-<uniquifier> {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "SOFT" 0,
    "WONK" 0;
} */

*{
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    overflow-x: hidden;
    font-family: "Fraunces", serif;
}


html{
    height: 100vh;
}

body{
    animation: scaleDown .7s ease both;
}

h1 {
    font-size: 2em;
    font-style: italic;
    font-weight: 300;
    text-transform: uppercase;
}


p{
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1em; 
    line-height: 1.3em;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    height: 10vh
    
}

article{
    width: 80vw;
    min-height: 70vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgb(255, 255, 255);
    padding: 0 1%;
    box-shadow: 0px 0px 20px 20px rgb(255, 255, 255) inset;
    border-radius: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 60%;
}

#map-button{
    position:absolute;
	top: 2%;
    right: 2%;
	height: 80px;
	width:auto;
}

#next a{
    font-size: 1em;
    font-style: italic;
    color: black;
}

#next a:hover{
    font-weight:bold;
    color: #8A80BD
}

.paragraph{
    margin: 10px;
    padding: 10px;
    overflow: visible;
}

.paragraph section{
    background-color: rgba(255, 255, 255, 0.762);
    box-shadow: 0 0 15px 15px rgba(255, 255, 255, 0.762);
    border-radius:40px 0 40px 0;
    overflow: visible;
    padding: 5px;
    
}

.center{
    margin: auto;
}

.right{
    margin-left: 0; 
    margin-right: auto;
    /*top: 3%;
    left: 0%; */
    width: 40%;
    min-width: 350px;
    overflow: auto;
}

#first p:first-letter{
    font-size: 6.4rem;
    font-weight: 600;
    font-variation-settings: "SOFT" 1;
    vertical-align: baseline;
    float: left;
    line-height: 5.1rem;
    margin-right: 6px;
}

.left {
    margin-left: auto; 
    margin-right: 0;
    /*bottom: 3%;   
    right: 0%; */
    width: 40%;
    min-width: 350px;
    text-align: right;
    overflow: visible;
    
}

#question-box{
    height: auto;
    text-align: center;
    padding: 20px;
}

#choices {
    display: flex;
    justify-content: center;
}

#q{
    font-weight: 500;
    font-size: 1.5em;
    padding: 10px;
	font-style: italic;
}

#choices a{
    background-color: white;
    margin: 0 10px;
    color: black;
    border-radius: 20px;
    padding: 15px 20px;
}

#choices a:hover{
    background-color: black;
    color: white;
    transition: all;
    transition-duration: 500ms;
    transition-timing-function: ease-in-out;
}


footer{
    font-size: 0.8rem;
    font-weight: 100;
    height: auto;
    width: 100vw;
    position: absolute;
    bottom: 0;
    background-color: rgba(53, 62, 82, 0.579);
    color: white;
    text-align: center;
    padding: 10px;
}