@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Comfortaa", sans-serif;
    text-decoration: none;
}

body {
    background: linear-gradient(90deg, #ff9def, #3cadf8);
}

nav {
    margin: auto;
    margin-bottom: 50px;
    margin-top: 20px;
    width: 80%;
    height: 12vw;
    border: #008cff;
    border-radius: 20px;
}

nav:hover {
    border: solid 1px #ffffff;
    border-radius: 80px;
    box-shadow: 0px 0px 20px #ffffff;
    transition: 1s;
}

.nav-logo {
    height: 100%;
    width: 60vw;
    display: flex;
    margin: auto;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 9vw;
    height: 10vw;
}

.logo:hover {
    transform: scale(1.05);
    transition: 0.2s;
}

.pm-text1, .pm-text2 {
    font-size: 2vw;
    color: #260052;
}

.pm-text1:hover, .pm-text2:hover {
    color: aliceblue;
    transition: 0.2s;
    text-shadow: 0px 0px 10px rgb(228, 188, 255);
}

.pm-text1 {
    margin-right: 20px;
}

.ctn {
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    height: 50vh;
    width: 50%;
    border: #008cff;
    border-radius: 20px;
}

.ctn:hover {
    box-shadow: 0px 0px 20px #ffffff;
    border: solid 1px #ffffff;
    transition: 1s;
}

.bt {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    height: 40px;
    width: 40vw;
    border-radius: 15px;
    font-size: 1.5vw;
    color: #000000;
    background-color: #ffffff;
}

.bt:hover {
    transform: scale(1.04);
    background-color: #e7e7e7;
    box-shadow: 0px 2px 5px #000;
    transition: 0.2s;
}

h2 {
    margin: auto;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 1.5vw;
}