body {
    background-color: white;
    height: 100vh;
    overflow: hidden;
}

.header {
    height: 80px;
    background-color: #BA007C;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.header .logo {
    width: 230px;
    height: 38px;
}

.container .polygon {
    position: absolute;
    right: 0;
    overflow: hidden;
}

.container .logo {
    position: absolute;
    width: 405px;
    height: 405px;
    top: 50%;
    transform: translate(0, -50%);
    right: 30px;
}
.container .logo p{
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 38px;
    line-height: 46px;
    text-align: center;
    margin-top: -40px;
    color: #204C8A;
}
.container .logo .social-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.container .logo .social-container a img {
    height: 60px;
}
.container .logo .social-container a:not(:last-child) img {
    margin-right: 15px;
}
.container .pattern {
    background:url("./assets/pattern.png") repeat-y 0 / 100% auto;
	height: calc(100vh - 80px);
	animation: ani 10s linear infinite ;
}
@keyframes ani{
    0%{background-position: 0 0;}
    100%{background-position: 0 100vh;}
}

@media (max-width: 700px) { 
    .header {
        height: 50px;
    }
    .header .logo {
        width: 80px;
        height: unset;
    }
    .container .polygon {
        height: calc(100vh - 50px);
    }
    .container .pattern {
        height: calc(100vh - 50px);
        animation: ani 16s linear infinite;
    }
    
    .container .logo {
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .container .logo .social-container a img {
        height: 50px;
    }
    
}