
@font-face {
    font-family: Manrope;
    font-display: swap;
    src: url("../fonts/Manrope-Regular.ttf") format("ttf");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: Cantarell;
    font-display: swap;
    src: url("../fonts/Cantarell-Regular.ttf") format("ttf");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: Cantarell;
    font-display: swap;
    src: url("../fonts/Cantarell-Bold.ttf") format("ttf");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: Gilroy;
    font-display: swap;
    src: url("../fonts/Gilroy-Light.otf") format("otf");
    font-weight: 400;
    font-style: normal;
}

[class*=__container] {
    max-width: 79.75rem;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    margin: 0 auto;
    padding: 0 1rem;
}

body {
    margin: 0;
    padding: 0;
}

/*main {*/
/*    display: flex;*/
/*    justify-content: center; !*Центрирование по горизонтали*!*/
/*    align-items: center;     !*Центрирование по вертикали *!*/
/*}*/

header {
    /*background-color: #fff;*/
}

footer {
    font-family: Gilroy, sans-serif;
    text-align: center;
    /*background-color: #fff;*/
    padding: 20px 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

h1 {
    font-family: Manrope, sans-serif;
    font-size: 40px;
    color: #35a587ff;
    text-align: center;
    margin-top: 130px;
    margin-bottom: 40px;
    padding: 0 20px;
}

h2 {
    font-family: Gilroy, sans-serif;
    text-align: center;
    font-weight: normal;
    margin-bottom: 50px;
    padding: 0 20px;
}

.logo {
    padding: 20px;
    font-family: Cantarell, sans-serif;
    font-size: 30px;
    font-weight: bold;
    color: #35a587ff;
}

.logo span {
    color: #203d49ff;
}

main {
    text-align: center;
}

.button {
    font-family: Gilroy, sans-serif;
    font-size: 20px;
    background-color: #35a587ff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
}

canvas, #overlay {
    margin: 0;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#overlay {
    opacity: 0.5;
    background-color: white;
}

#stars {
    background: white;
    width:100%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}