<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Sign up/ Log in Page*/
body {
	width: 100%;
	height: 100%;
	color: #fff;
	background: linear-gradient(-45deg, rgb(57, 211, 198),rgb(236, 214, 119),rgb(57, 211, 198),#23A6D5, rgb(240, 133, 174), rgb(255, 241, 110),rgb(240, 133, 174));
	background-size: 400% 400%;
	-webkit-animation: Gradient 15s ease infinite;
	-moz-animation: Gradient 15s ease infinite;
	animation: Gradient 15s ease infinite;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

#startup{
    height:700px;
}

h1{
	font-family: 'Open Sans';
	font-weight: 400;
	text-align: center;
	position: absolute;
	top: 40%;
	right: 0;
    left: 0;
    font-size:3.3em;
}
.btn{
    opacity:0.9; 
}

form{
    width:80%;
    margin:20px 0 20px 20px;
}
legend{
    background-color:rgb(66, 66, 66, 0.7);
    padding:15px;
    border-radius: 7px 7px 0 0;
}

.btn-dark{
    margin-top:30px;
}

nav{
    height:50px;
    background-color: rgb(66, 66, 66);
    width:100%;
    opacity: 0.8;
}

/*login out buttons*/
#login, #logout{
    background-color: rgb(66, 66, 66, 0.7);
    color:white;
    border: none;
   }

a{
    color:white;
    line-height:30px;    
}


.container{
    padding:0;
    width:80%;
    height: auto;
    margin:50px auto;
    background-color:rgb(66, 66, 66, 0.6);
    border-radius: 7px;
    position: relative;
}

#landing{
    height:100%;
}

.card-text{
    color:rgb(59, 59, 59);
}

.card{   
    margin:15px;
    float:left;
    position: relative;
    background-color:white;
}

.card2{
    margin:15px;
    float:left;
    height:280px;
    position: relative;
    background-color: white;
    border-radius: 5px;
}

.title{
    background-color: rgb(66, 66, 66, 0.5);
    color:white;
    padding:8px;
    border-radius: 7px 7px 0 0;
    clear:both;
}

.title2{
    background-color: rgb(66, 66, 66, 0.5);
    color:white;
    padding:8px;
    clear:both;
}

#selected-city{
    background-color: rgb(66, 66, 66, 0.5);
    color:white;
    padding:8px;
    border-radius: 7px 7px 0 0;
    font-size: 2em;
}

#save-itinerary{
    position: absolute;
    bottom:10px;
    right:140px;
    clear:both;
    float: right;
    width: 120px;
    margin-right: 30px;
}

#reset-trip{
    position: absolute;
    bottom:10px;
    right:0;
    clear:both;
    float:right;
    width: 120px;
    margin-right: 30px;
}

#saveDiv{
    clear:both;
}

.remove-card{
    position: absolute;
    top:0;
    right:0;
    color:white;
    background-color: rgba(253, 114, 114, 0.7);
    border-radius: 50%;
    border:none;
    height:20px;
    width:20px;
}

.add-to-trip{
    align-content: center;
}

#submit-questions{
    position: absolute;
    bottom:10px;
    left:45%;  
}

#questions{
    padding: 30px;
}

.q{
    padding-bottom:10px;
}

#radio{
    margin-right: 2px;
}

#hotels {
    height: 350px;
}

#activities {
    height: 350px;
}

#restaurants {
    height: 350px;
}

#selectedCards {
    height: 350px;
}

#radio{
    margin-right: 3px;
}

/* Messages */
#chatbox {
    width: 100%;
    color: black;
    overflow: hidden;
}

#messages {
    height: 200px;
    overflow: auto;
}
</pre></body></html>