* {
    padding: 0;
    margin: 0;
    font-family: 'Courier';
}

body {
    height: 100vh;
    width: 100vw;
    background-color: rgba(229, 249, 255, 1);
    cursor: url(img/Cursor.png), auto;
}

.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 50%;
}

/* first page style */
.speech-bubble {
    color: #323232;
    font-size: 100%;
    position: relative;
    background: #a7d9ea;
    border-radius: 40% 20%;
    padding: 1em;
    text-align: center;
    max-width: 400px;
    max-height: 180px;
    min-width: 300px;
    min-height: 150px;
}

.speech-bubble:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    border: 1.188em solid transparent;
    border-top-color: #a7d9ea;
    border-bottom: 0;
    border-right: 0;
    margin-left: -0.594em;
    margin-bottom: -1.187em;
}

.centerBubble {
    position: fixed;
    right: 25px;
    bottom: 400px;
}

.landingRubby {
    position: fixed;
    height: 400px;
    width: 700px;
    bottom: -20px;
    right: -350px;
}