:root {
    --extra-bold: 'Montserrat', sans-serif;
    --text-bubble: 'Roboto Condensed', sans-serif;
    --light-pink: #FFECF9;
    --dark-pink: #F082CC;
    --pink-purple: #A73694;
    --pale-purple: #d77cc8;
}

* {
    margin: 0;
    padding: 0;
}

html,
body {
    height: 1024px;
    width: 1280px;
    /* Disable Scroll */
    overflow: hidden;
}

.lines {
    align-items: center;
    padding-top: 45px;
    height: 100%;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--extra-bold);
}

p {
    font-family: var(--text-bubble);
}

.bold-text {
    font-family: var(--extra-bold);
    font-size: large;
}

/* Phone Design */

.phone {
    position: relative;
    z-index: -1;
    background-color: var(--light-pink);
    border: 45px solid var(--pink-purple);
    border-radius: 35px;
    box-shadow: 10px 10px rgba(124, 28, 108, 0.1);
    width: 450px;
    height: 850px;
}

.phone .camera {
    position: relative;
    left: 180px;
    bottom: 35px;
}

.phone .camera .dot-one {
    font-size: x-large;
}

.phone .camera span {
    margin: 5px;
}

.phone .ui-border {
    background-color: var(--light-pink);
    height: 25px;
    border-bottom: 2px solid var(--pink-purple);

}

.phone .pfp {
    width: 50px;
    height: auto;
}

.phone p {
    font-size: large;
    margin-left: 20px;
    margin-bottom: 5px;
}

.phone .name {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 10px;
    width: 100%;
    border-bottom: 5px solid var(--pink-purple);
    color: var(--pink-purple);
    text-align: center;

}

.phone .text-1,
.phone .text-2,
.phone .text-3,
.phone .text-4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: var(--dark-pink);
    color: white;
    width: fit-content;
    margin-left: 20px;
    margin-bottom: 10px;
    padding: 5px 20px 0 5px;
    border-radius: 50px;
    position: relative;
    top: 30px;
}

.phone .text-marty-1,
.phone .text-marty-2,
.phone .text-marty-wait {
    display: flex;
    flex-direction: row;
    background-color: var(--pale-purple);
    color: white;
    width: fit-content;
    border-radius: 50px;
    margin-bottom: 10px;
    margin-right: 20px;
    margin-left: auto;
    padding: 15px 20px 15px 5px;
    position: relative;
    top: 30px;
}

/*///////////// ALL PAGES ////////////*/

.scene1,
.scene2,
.bailey-path,
.patricia-path,
.parks,
.restaurants {
    margin: auto;
    height: 100%;
    width: 100%;
}

.warning {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    bottom: 45px;
    margin: auto;
    width: 550px;
    font-family: var(--extra-bold);
    font-size: x-large;
    color: white;
}

.warning .continue {
    color: white;
    font-size: large;
    left: 0;
}

.marty-standard-size {
    width: auto;
    height: 450px;
}

.speechbubble {
    background-image: url(images/text-bubble-test.png);
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    font-family: var(--text-bubble);
    color: black;
    width: 550px;
    height: 150px;
    margin: 20px;
    padding: 30px 45px 20px 35px;

}

a {
    color: inherit;
    text-decoration: none;
}

.choice {
    background-color: var(--pink-purple);
    color: white;
    text-decoration: none;
    font-family: var(--extra-bold);
    border-radius: 25px;
    margin: 25px;
    padding: 10px 25px;
    transition: all 0.5s;
}

.choice:hover {
    background: white;
    color: var(--dark-pink);
    border: 2px solid;
    transition: all 0.5s;

}

.continue {
    position: relative;
    font-family: var(--extra-bold);
    font-size: small;
    color: var(--dark-pink);
    top: 80px;
    left: 320px;
}

.continue img {
    width: 35px;
    height: auto;
    position: relative;
    top: 10px;
}



/*///////////// START PAGE ///////////*/

.start-page {
    background-image: linear-gradient(var(--light-pink), #FCDAF1,
            #F49FD8, var(--dark-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

.password,
.username {
    background-color: white;
    width: max-content;
    margin-bottom: 5px;
}

.title {
    position: relative;
    top: -3%;
    width: 80%;
}

.marty-title {
    position: relative;
    top: 10%;
    z-index: -1;
    height: 200px;
}

.start-page .login-info {
    width: max-content;
}

.start-page .login {
    display: inline-flex;
    text-align: left;
}

.start-page .login h1 {
    color: var(--pink-purple);
    margin: 10px;
    padding: 10px;
    width: 205.250px;
    text-align: right;
}

.start-page .login div {
    background-color: var(--pink-purple);
    border: solid var(--dark-pink) 5px;
    margin: 10px;
    padding: 10px;
    width: 400px;
}

.start-page .login h2 {
    animation: type 5s steps(22);
    overflow: hidden;
    white-space: nowrap;
    border-right: 4px solid;
    width: fit-content;
}

/*  Type animation tutorial:
    https://www.youtube.com/watch?v=6vOJoAmbza0&ab_channel=Codingflag */
@keyframes type {
    0% {
        width: 0ch;
    }

    100% {
        width: 22ch;
    }
}

.start-button {
    text-align: center;
    margin-top: 50px;
}

.blinking-text {
    margin-top: 25px;
    animation: blinkingText 3s infinite;
}

/* Blinking Effect
https://html-online.com/articles/blinking-text-css-animation/ */

@keyframes blinkingText {
    0% {
        color: white;
    }

    25% {
        color: var(--pink-purple);
    }

    50% {
        color: white;
    }

    75% {
        color: var(--pink-purple);
    }

    100% {
        color: white;
    }
}

.reg-button,
.pressed-button {
    width: 200px;
    height: auto;
}

.reg-button {
    position: absolute;
    transition: opacity 0.2s;
}

img.reg-button:hover {
    transition: opacity 0.2s;
    opacity: 0;
}

/*///////////// PARK DATES //////////////*/
.park-date {
    height: 100%;
    width: 100%;
    background-image: url(images/backgrounds/park-bg.png);
    background-size: auto 100%;
    background-position: center right;
}

/*//////////// RESTAURANT DATES //////////////*/
.restaurant-date {
    height: 100%;
    width: 100%;
    background-image: url(images/backgrounds/restaurant-bg.png);
    background-size: auto 100%;
    background-position: center bottom;
}