body, * {
    font-family: "Lucida Sans Typewriter","Lucida Console",Monaco,"Bitstream Vera Sans Mono",monospace;
    font-weight: 300;
    font-size: 13px;
    color: #ffffff;
    line-height: 26px;
    margin: 0px;
    padding: 0px;
    text-decoration: none;
    scroll-behavior: smooth ;
}

.Home{
    height: 100vh;
    width:  100wv;
    background-color: black;

    background-image: url('svg/layered-waves-haikei.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

.data{
    width: 70vw;
  
    margin: auto;
    padding: 100px 0;
}

.title{
    font-weight: bold;
    text-transform: uppercase;
    font-size: 5vw;
    line-height: 6vw;
}

.subtitle {
    display: inline;
    font-size: 15px;
    color: black;
    padding-bottom: 2px;
    
}

.todays {
    border: solid;
    height: 300px;

    margin: 100px 0px;
    position: relative;
    background-color: white;
}

.todays::after {
    content: "";
    
    border: solid black;


    height: 100%;
    width: 100%;

    position: absolute;

    top: 10px;
    left: 10px;

    background-color: black;
    z-index: -1;
}

.wrap{
    position:relative;
    z-index:1;
}

.feel {
    padding: 20px;
}

.options {
    padding: 10px 0px 0px 100px;
}

.emote {
    font-size: 20px;
    display: inline;
}

li, ul {
    text-decoration: none;
    list-style: none;
    display: inline-block;
}

.highlight {
    padding: 1px;
    color: black;
    border-radius: 5%;
    display: inline;

   
}

.navbar {
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;

    width: 100%;

    z-index: 1000;
}

.brand-title {
    font-size: 1.5rem;
    margin: .5rem;
}

.navbar-links {
    height: 100%;
}

.navbar-links ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    list-style: none;
}

.navbar-links li a {
    display: block;
    text-decoration: none;
    color: white;
    padding: 1rem;
}

.navbar-links li:hover {
    background-color: #555;
}

.spacer {
    aspect-ratio: 960/300;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.layer1 {
    background-image: url('svg/layer1.svg');
}

.layer2 {
    background-image: url('svg/layer2.svg');
    background-position: bottom;
}

#About {
    width: 100vw;
    background-color: #001220;
}

.calendar {
    width: 100%;
    height: 100px;
    margin-top: 30px;
}

.week{
    display: flex;
    width: 100%;

    justify-content: space-evenly;
}

.day {
    color: black;

    justify-content: center;
    height: 100px;
    

    width: calc(100%/8);

    border-radius: 5%;
}

.DayValue {
    
    font-size: 50px ;
    text-align: center;
  
    height: calc(100% - 30px);
    padding: 20px;
}

.innertext {
    width: 100%;
    text-align: center;
    background-color: black;
    color: white;
}

.btn {
    padding: 5px 20px;
    background-color: transparent;
    color: black;

    transition: 0.5s;
}

.btn:hover {
    cursor: pointer;
    background-color: #FFD93D;
    border-radius: 10%;
}

.cards , .cards1{
    height: 300px;

    margin: 100px 0px;
    position: relative;
    background-color: #4D96FF ;
    
}

.cards::after , .cards1::after{
    content: "";

    height: 100%;
    width: 100%;

    position: absolute;

    top: 10px;
    left: 10px;

    background-color:#6BCB77 ;

    z-index: -1;
}

.cards1{
    background-color: #FFD93D ;
}

.cards1::after {
    background-color: #FF6B6B;
}

.card , .cardsubtitle {
    padding: 20px;
    color: black;
}

.cardsubtitle{
    font-size: 20px;
    border-bottom: solid ;
    background-color:white;
}

#Contact {
    height: 100vh;
    width:  100wv;
    background-color: black;

    background-image: url('svg/layer3.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

.SignUp {
    height: 70vh;
    width: 30vw;
    background-color: #4D96FF;

    margin: auto;
    margin-top: 100px;

    border-radius: 2%;
}

.background {
    background-image: url('svg/layer4.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

.sign {
    font-size: 20px;
    text-align: center;
    padding: 10px;
}

.user_name {
    display: block;

    margin: 10px auto ;

    width: 75%;
    padding: 10px;

    color: black;
}

.submit {
    display: block;
    color: black;
    text-align: center;
    background-color: transparent;

    padding: 5px 20px;
    
    margin: 10px auto;
}