@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,500&display=swap');


*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrant", sans-serif;
    /* background-color: #24252A; */
}

li, a, button {
    font-family: "Montserrant", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;
}

header{
    position: sticky;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1% 10%;
    background: linear-gradient(#e66465, #9198e5);
}

.logo
{
    cursor: pointer;
    height: 7rem;
    transition: all .3s ease 0s;
    transform: scale(1.0,1.0);
}

.logo:hover{
    /* border-radius: 20px;
    box-shadow: 10px 10px 15px 0px rgba(0,0,0,0.75); */
    transition: all .3s ease 0s;
    transform: scale(1.1,1.1);
}

.nav__links{
    list-style: none;
}

.nav__links li{
    display: inline-block;
    padding: 0px 10px;
}

.nav__links li a {
    transition: all .1s ease 0s;
}

.nav__links li a:hover {
    transition: all .1s ease 0s;
    padding-bottom: 5px;
    color: #004055;
    border-style: solid;
    border-width: 0px 0px 2px 0px;
    border-color: #004055;
}

.nav__links li a:active {
    transition: all .1s ease 0s;
    padding-bottom: 5px;
    color: #004055;
    border-style: solid;
    border-width: 0px 0px 2px 0px;
    border-color: #004055;
}

body{
    background: url(img/cover.png);
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}

#errorCode{
    color: #000000;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
    font-size: 100px;
    display: block;
    transform: skewY(-5deg);
}

#errorText{
    color: #ee7777;
    text-align: center;
    font-size: 30px;
    display: block;
    transform: skewY(-5deg);
}

