* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    font-family: 'Courier New', Courier, monospace;
    background-color: black;
    color: rgb(255, 255, 255);
}

p{
    color: rgb(201, 201, 201);
    font-size: 1rem;
}

.main-division {
    width: 60%;
    height: 100vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 50px;
}

.intro {
    display: flex;
    height: 40%;
}

.intro img {
    margin: auto;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.intro span {
    padding-left: 20px;
    margin: auto;
    font-weight: 900;
    font-size: 15px;
}

.button-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}

.button-section a {
    text-decoration: none;
    color: white;
    background-color: rgb(112, 2, 112);
    width: 100%;
    height: 45px;
    text-align: center;
    padding-top: 17px;
    box-shadow: 3px 3px  rgb(204, 93, 204);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.button-section a:hover {
    background-color: purple;
}


@media screen and (max-width: 768px) {
body {
    width: 100%;
    height: 100vh;
    font-family: 'Courier New', Courier, monospace;
    background-color: black;
    color: rgb(255, 255, 255);
}
    .main-division {
        width: 100%;
        height: 100vh;
        margin: auto;
        display: flex;
        flex-direction: column;
        padding: 50px;
    }
    .intro {
        display: flex;
        flex-direction: column;
    }
    .intro span {
        text-align: center;
    }
}