@import url('https://fonts.googleapis.com/css2?family=DM+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100%;
}

.bg-image{
    height: 100vh;
    width: 100vw;
    background-image: url(../img/fon.jpg);
    filter: blur(8px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.container {
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: 2;
}
.bold {
    font-weight: bold;
}
header {
    height: 15vh;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%); 
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'DM Sans', sans-serif;
}

header img{
    width: 50px;
    margin-right: 10px;
}
main {
    font-family: 'Raleway', sans-serif;
    min-height: 70vh;
    width: 85%;
    margin: 20px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, .5);
    border: 1px solid rgba(0, 0, 0, .3);
    border-radius: 15px;
}
main p {
    font-size: 160%;
}
main ul li{
    list-style: none;
}
footer {
    font-family: 'Raleway', sans-serif;
    min-height: 10vh;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%); 
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
footer p {
    font-size: 120%;
}
footer a {
    color: white;
}

@media screen and (min-width: 810px) {
    main {
        width: 50%;
    }
}