@font-face {
  font-family: "IntroW01-BlackCaps";
  src: url("../font/IntroDemo-BlackCAPS.otf");
}
@font-face {
    font-family: 'Seravek';
    src: url(fonts/Seravek/seravek-bold.woff2) format(woff2),
         url(fonts//Seravek/seravek-bold.woff) format(woff);
    font-weight: bold;
}

@font-face {
    font-family: 'Seravek';
    src: url(fonts/Seravek/seravek.woff2) format(woff2),
         url(fonts//Seravek/seravek.woff) format(woff);
    font-weight: 400;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background: #F26167;
    font-family: 'Seravek', Arial, Helvetica, sans-serif;
    line-height: 1.2;
}

img{
    width: 100%;
    height: auto;
    display: block;
}

.container{
    width: 100%;
    max-width: 1200px;
    height: 100vh;
    padding: 0 15px 10vh;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 30px;
}
.logo-container{
    width:100%;
    display: flex;
    justify-content: center;
}
.logo{
    width: 70px;
}

.screen-reader-text{
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.title{
    font-size: 25px;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;

}
h2{
    font-size: 1em;
    margin-bottom: .5em;
    font-family: 'IntroW01-BlackCaps', Arial, Helvetica, sans-serif;
}
h3{
    font-size: .8em;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
}
p{
    font-size: 18px;
    margin: 24px 0;
}

.social-icons{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.social-icons .item-ss{
    width:48px;
}

.social-icons .item-ss a svg{
    width: 100%;
    height: auto;
    fill: #ffffff;
    display: block;
    transition: all .3s ease-out;
}

.social-icons .item-ss a:hover svg{
    opacity: .8;
}
@media only screen and (min-width: 768px) {
    .title{
        font-size: 35px;
    }

    .logo{
        width: 90px;
    }
}