* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.site-header {
    width: 100%;
    height: 100vh;
    background: #2A0944;
    background: linear-gradient(57deg, black);
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 0% 100%);
}

nav {
    width: 100%;
    height: 100px;
    background: linear-gradient(57deg, black);
    color: white;
    align-items: center;
}

.logo {
    width: 50%;
    height: 100px;
    padding-left: 50px;
    padding-top: 40px;
    font-size: 3rem;
    text-align: center;
}

.e-voting {
    font-size: 1.8rem;
}

.menu {
    width: 50%;
    height: 100px;
}

.menu ul {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.menu ul li {
    list-style: none;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

section {
    display: flex;
}

.leftside {
    width: 60%;
    height: auto;
    overflow: hidden;
    margin-top: 20px;
    padding-top: 20px;
}

.leftside img {
    padding-left: 50px;
    width: 800px;
    height: 400px;
}

.rightside {
    width: 40%;
    height: 300px;
    color: white;
    text-align: center;
    margin-top: 80px;
    padding: 40px;
}

.rightside h1 {
    text-align: center;
    color: #ffffff;
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
}

.rightside p {
    font-size: 1.1rem;
    padding: 30px 0;
}

.rightside button {
    font-size: 17px;
    font-weight: 600;
    color: black;
    text-transform: uppercase;
    background: linear-gradient(57deg, #34d8eb, #b1ebf2);
    border-radius: 25px;
    padding: 20px 35px;
}

.rightside button:hover {
    background: linear-gradient(57deg, #8cc2ed, #46a5f2, );
}