*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans', sans-serif;
    color: #ECF5FE;
}

section{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: url(shapes.png);
    background-color: #1a1d27;
    background-attachment: fixed;
}

header{
    position: relative;
    top: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .menubar a{
    color: #fff;
    background: #1a1d27;
    text-decoration: none;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 20px;
    transition: 0.3s;
    transition-property: background;
}

header .menubar a:not(:last-child){
    margin-right: 30px;
}

header .menubar a:hover{
    background: #074eb9;
}

.content{
    max-width: 700px;
    margin: 60px 100px;
}

.content .information h2{
    color: #7CB4F4;
    font-size: 55px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 60px;
    margin-bottom: 30px;
}

.content .information span{
    color: #fff;
    font-size: 50px;
    font-weight: 700;
}

.content .information p{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 40px;
}

.content .details{
    color: #fff;
    background: #094a7c;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
    transition-property: background;
}

.content .details:hover{
    background: #05406d;
}

.sm-icons{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding-bottom: 35px;
}

.sm-icons a{
    position: relative;
    color: #ECF5FE;
    font-size: 25px;
    transition: 0.3s;
    transition-property: transform;
}

.sm-icons a:not(:last-child){
    margin-right: 60px;
}

.sm-icons a:hover{
    transform: scale(1.5);
}

/* About page */

ul .a{
    list-style-type: circle;
    margin: 0;
    padding: 0;
    width: 100%;
}

li{
    padding: 0;
    margin: 35px;
}

hr{
    width: 45%;
    margin: auto;
}

.content .container{
    max-width: 2500px;
    padding: 100px 100px;
}

.container span{
    color: #fff;
    font-size: 50px;
    font-weight: 700;
}


