@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

:root {
    --raytion-blue: #00506A;
    --raytion-turquoise: #30BFCD;
    --raytion-turquoise-dark: #008892;
    --text: #303942;
    --grey-light: #f9f9fc;
    --grey-medium: rgb(233,233,233);
    --grey-dark: #BAB8C580;
    --white: #fff;
    --black: #000;

}

* {
    margin: 0px;
    padding: 0px;
}

/** General Stylings **/

body {
    background-color: var(--grey-light);
}

header {
    background-color: var(--raytion-blue);
    height: 55px;
    padding: 0px 20px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

header img, p {
    display: inline;
}

header p {
    color: var(--white);
}

.doc_block {
    display: flex;
    justify-content: center;
    flex-direction: row;

    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;
}

.doc_link {
    background-color: var(--white);
    border-color: var(--grey-medium);
    border-width: 1px;
    border-style: solid;
    box-shadow: 0 0 15px 0px var(--grey-medium);

    margin: 10px;
    padding: 30px 30px 32px 30px;
    display: flex;
    flex-direction: column;
}

.doc_link:hover {
    box-shadow: 0 0 20px 0px var(--grey-dark);
}

h1, h2, h3 {
    font-family: "Source Sans Pro";
    font-weight: 600;
    color: var(--text);
}

p, a {
    font-family: "Source Sans Pro";
    font-weight: 400;
    color: var(--text);
    font-size: 14px;
}

button {
    color: var(--white);
    background-color: var(--raytion-turquoise);
    border-radius: 40px;
    height: 30px;
    border: none;
    padding: 2px 15px 0px 15px;
}

button:hover {
    background-color: var(--raytion-turquoise-dark);
}

a {
    color: var(--raytion-turquoise);
    text-decoration: none;
}

a:hover {
    color: var(--raytion-turquoise-dark);
}

/** Font Sizes **/

h1 {
    color: var(--text);
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
}

h2 {
    margin-bottom: 5px;
    font-size: 22px;
}

h3 {
    font-size: 18px;
}

p {
    color: var(--text);
    font-size: 14px;
}

/** Elements **/

.content {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.doc_intro {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 70vw;
}

p.description {
    display: inline-block;
    width: 50vw;
}

img.logo {
    height: auto;
    width: 80px;
    margin-top: 2px;
}

img.icon {
    height: 20px;
    width: 20px;
    margin-right: 5px;
}

img.isometric {
    height: 250px;
    width: auto;
    margin-bottom: 20px;
}

.doc_link h2 {
    margin-bottom: 5px;
    margin-top: 15px;
}

.doc_info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon_link {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 5px;
}

.doc_block .icon {
    height: 40px;
    width: auto;
    align-self: flex-start;
    margin-bottom: -5px;
}
/** Mobile Styling **/

@media only screen and (max-width: 600px) {

    .doc_block {
        flex-direction: column;
    }

    img.isometric {
        display: none;
    }

    .doc_intro {
        width: 90vw;
    }

    p.description {
        width: 80vw;
    }

}

@media only screen and (max-height: 850px) {

    img.isometric {
        display: none;
    }

}