body {
    display:grid;
    grid-template-areas: 
        "header header header"
        "aside main main"
        "aside main main"
        "footer footer footer";
    grid-template-columns: 1fr repeat(2, 4fr);
    grid-template-rows: 64px repeat(2, 1fr) 65px;
    height: 100vh;
    padding: 0;
    margin: 0;
    background-color: #212227;
}

.port-link {
    position: fixed;
    top: 0;
    left: 0;
}

/* Header/Nav Bar styling*/
header {
    grid-area: header;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items:center;
    padding: 5px 30px;
    border-bottom: 1px solid #5E616E;
}

/* Style for fictional logo */
.logo {
    font-family: "Exo 2";
    font-size: 24px;
    color: #F26430;
    text-decoration:overline;
    padding: 5px 0px;
    animation-name: logoAnimation;
    animation-duration: 10s;
}

@keyframes logoAnimation {
    0% {transform:rotate(0deg);}
    25% {transform:rotate(15deg);}
    50% {transform: rotate(-15deg);}
    100% {transform: rotate(15deg);}

}

/* Style side bar */
.aside {
    grid-area: aside;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    border-right: 1px solid #5E616E;
}


.aside ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    padding: 0;
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.aside li {
    padding: 10px 0;
    width: 100%;
    text-align: center;
    font-family: "Montserrat";
    font-weight: bold;
    color: #F26430;
    cursor: pointer;
    transition: all .2s ease;
}

.aside li:hover {
    color: #212227;
    background-color:#F26430;
}

.aside .btn {
    width: fit-content;
    margin: auto;

}

/* Call to action button style */
.btn {
    padding: 10px;
    border-radius: 20px;
    background-color: #F26430;
    font-family: "Montserrat";
    font-weight: bold;
    color: #212227;
    cursor: pointer;
}

.btn::after {
    content: ' \2192';
}

.btn:hover::before {
    content: '\2192 ';
}

.btn:hover::after {
    content: "";
}


/* Setting up the main content grid */
.main-content {
    grid-area: main;
    margin: 0;
    padding: 0;
    display:grid;
    grid-template-areas: 
        "c1 c1"
        "c2 c3";
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2,1fr);
}

.content-1 {
    grid-area: c1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
    border-radius: 18px;
    background-color: #212227;
    filter:drop-shadow(0 0 5px #6761A8);
    background-image: linear-gradient(rgba(33,34,39,.8), rgba(33,34,39,.5)), url('server-room.jpg');
    background-size: cover;
    background-position: center;
}



.content-1 h1 {
    font-family: 'Montserrat';
    color: #F26430;
    font-size:xx-large;
    text-shadow: 1px 1px #212227;
    margin-bottom: 0;
}

.content-1 p {
    font-family: 'Source Sans 3';
    margin-top: 50px;
    margin-bottom: 40px;
    color: white;
    font-size:larger;
}

.hero-btn-container {
    width: 25%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}


.hero-btn-container div {
    padding: 12px;
    border: 1px solid #5E616E;
    font-family: 'Source Sans 3';
    font-weight: bold;
    cursor:pointer;
}

.hero-btn-start {
    background-color: #009DDC;
    transition: all .3s;
}

.hero-btn-start:hover {
    box-shadow: 1px 1px 20px #009DDC;
    transform: scale(1.1);
}

.hero-btn-docs {
    background-color: #009B72;
    transition: all .3s;
}

.hero-btn-docs:hover {
    box-shadow: 1px 1px 20px #009B72;
    transform: scale(1.1);
}


.content-2 {
    grid-area: c2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
    "content image";
    margin: 20px;
    border-radius: 18px;
    background-color: #212227;
    filter:drop-shadow(0 0 5px #6761A8);

}

.c2-content{
    grid-area: content;
    align-content: center;
}

.content-2 h2{
    font-family: 'Montserrat';
    color: #F26430;
    font-size:x-large;
    text-shadow: 1px 1px #212227;
    text-align: center;
}

.content-2 h3 {
    font-family: 'Montserrat';
    color: #009DDC;
    font-size: large;
    text-align: center;
}

.content-2 p {
    margin: 20px 25px;
    font-family: 'Source Sans 3';
    margin-bottom: 40px;
    color: white;
    font-size:larger;
}

.content-2 p em {
    color:#F26430;
}

.c2-image {
    grid-area: image;
    overflow: hidden;
    align-content: center;
}

.c2-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-right: 20px;
    filter:hue-rotate(-45deg);
}

.content-3 {
    grid-area: c3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
    "image content";
    margin: 20px;
    border-radius: 18px;
    background-color: #212227;
    filter:drop-shadow(0 0 5px #6761A8);
}

.c3-content{
    grid-area: content;
    align-content: center;
}

.c3-image {
    grid-area: image;
    overflow: hidden;
    align-content: center;
}

.c3-image img {
    width: 100%;
    object-fit: cover;
    margin: 0;
    filter:hue-rotate(-45deg);
}

.content-3 h2{
    font-family: 'Montserrat';
    color: #F26430;
    font-size:x-large;
    text-shadow: 1px 1px #212227;
    text-align: center;
}

.content-3 h3 {
    font-family: 'Montserrat';
    color: #009DDC;
    font-size: large;
    text-align: center;
}

.content-3 p {
    margin: 20px 25px;
    font-family: 'Source Sans 3';
    margin-bottom: 40px;
    color: white;
    font-size:larger;
}

.content-2 p em {
    color:#F26430;
}


footer { 
    grid-area: footer;
    border-top: 1px solid #5E616E;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 20px;
}

.logo-noanim {
    font-family: "Exo 2";
    font-size: 24px;
    color: #F26430;
    text-decoration:overline;
    padding: 5px 0px;
    margin-top: 10px;
    margin-left: 10px;
}

.info ul{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-content: center;
    list-style: none;
    gap: 10px;

}

.info ul li {
    text-decoration: none;
    color: white;
    font-family: 'Montserrat';
}

.info ul li::after {
    content: " | ";
}

