body {
    font-family: "Arial";
    background-color: #F2F2F2;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-frame {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border: 4px solid #000000;
    padding-top: 50px;
    padding-bottom: 50px;
}

.sub-frame {
    height: 75px;
    display: flex;
    align-items: center;
    background-color: #1c6624;
    padding: 10px 0;
    margin-top: 40px;
    margin-bottom: 40px;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 50%, calc(100% - 50px) 100%, 0 100%);
    margin-right: 50px;
}

.sub-frame p {
    position: absolute;
    width: 100%;
    color: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-right: 50px;
    padding-left: 5px;
}

.circle {
    position: absolute;
    right: 5%;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 100%;
}

h1 {
    font-size: 5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

p {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.link {
    text-decoration: underline;
}

@media screen and (max-width: 1024px) {

    .main-frame {
        width: 90%;
        padding-top: 30px;
        padding-bottom: 30px;
        border: 2px solid #000000;
    }

    .sub-frame {
        height: 45px;
        margin-top: 10px;
        margin-bottom: 10px;
        margin-right: 20px;
        clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
    }

    h1 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    p {
        font-size: 0.6rem;
    }

    .circle {
        right: 8%;
        width: 20px;
        height: 20px;
    }
}
