body, html
{
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body
{
    font-family: 'Ubuntu', sans-serif;
    display: flex;
    flex-direction: column;
    overflow: auto;
    background-color: rgb(131, 173, 228);
    background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 2px,transparent 2px, transparent 4px),linear-gradient(0deg, rgb(30, 35, 121),rgb(45, 106, 187));
    align-items: center;
}

.content
{
    width: 60vw;
    position: absolute;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.contact-bubble
{
    position: relative;

    border-radius: 10px;
    background-color: #ffffff;

    -webkit-box-shadow: 10px 10px 14px -3px rgba(0,0,0,0.4);
    -moz-box-shadow: 10px 10px 14px -3px rgba(0,0,0,0.4);
    box-shadow: 10px 10px 14px -3px rgba(0,0,0,0.4);

    color: rgb(20, 20, 20);
    padding: 20px 40px;

    margin-bottom: 120px; 
}

.bubble
{
    position: relative;

    border-radius: 10px;
    background-color: #43a9fe;

    -webkit-box-shadow: 10px 10px 14px -3px rgba(0,0,0,0.4);
    -moz-box-shadow: 10px 10px 14px -3px rgba(0,0,0,0.4);
    box-shadow: 10px 10px 14px -3px rgba(0,0,0,0.4);

    color: white;
    padding: 20px 40px;

    margin-bottom: 20px;
}

.bubble:last-of-type
{
    margin-bottom: 120px;
}

.bubble-icon
{
    position: absolute;
    right: calc(100% + 30px);
    font-size: 25px;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.bubble-icon[colour="orange"]
{
    background-color: rgb(216, 112, 74);
}

.bubble-icon[colour="green"]
{
    background-color: rgb(74, 216, 98);
}

.bubble-icon[colour="yellow"]
{
    background-color: rgb(216, 207, 74);
}

.banner
{
    margin-top: 15vh;
    margin-bottom: 50px;
    max-height: 45vh;
}

.banner img
{
    max-width: 100%;
    max-height: 100%;
}

@media only screen and (max-width: 600px) 
{
    .content
    {
        width: calc(100% - 10px);
    }

    .bubble-icon
    {
        position: relative;
        right: 0;
    }
}

@media only screen and (max-width: 1000px) 
{
    .content
    {
        width: 80vw;
    }

    .bubble-icon
    {
        position: relative;
        right: 0;
    }
}

a
{
    color: rgb(68, 109, 163);
}