@import url('https://fonts.googleapis.com/css2?family=Changa:wght@200..800&display=swap');
* {
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
    color: #080607;
    font-family: "Changa", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    width: 100%;
    min-height: 100%;
    background-image: url('/img/bg_noise.png');
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
}
div {
    box-sizing: border-box;
}
a {
    color: #12c7d7;
    text-decoration: none;
}
a:hover {
    color: #60f0fe;
    text-decoration: none;
}
.wrapper {
    background-color: rgba(8, 6, 7, 0.1);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    margin-top: 10%;
    padding: 40px;
}
.header {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    width: 60%;

}
.header span{
    color: #01af6e;
}
.logo {
    font-size: 40px;
    text-transform: uppercase;
    position: relative;
}
.logo span{
    color: #ef5331;
    font-size: 20px;
    display: block;
    position: absolute;
    top: -7px;
    right: 0px;   
}
.description {
    padding: 40px;
    text-align: center;
}
.button {
    background-color: #2a3434;
    border-radius: 30px;
    padding: 7px 24px;
}
.screens{
    display: flex;
    gap: 20px;
    margin: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.screens .screen {
    width: 288px;
    height: 162px;
    overflow: hidden;
    border-radius: 30px;
    border: 5px solid rgba(1, 1, 1, 0.1);
}
.screens .screen img{
    width: 100%;
    height: 100%;
}
.registrations{
    display: flex;
    padding: 40px;
    flex-wrap: nowrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-size: 32px;
    background-color: rgba(8, 6, 7, 0.1);
    width: 100%;
}
.num {
    font-size: 40px;
    color: #ef5331;
}