@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

button {
    font-size: 60px;
    background: linear-gradient(230deg, #002aa6, #6b00b3);
    padding: 7px 15px;
    border: 2px solid #ffffff;
    color:white;
    margin: 5px;
    border-radius: 30px;
    transition-duration: 125ms;
    transition-timing-function: ease-in-out;
    cursor: pointer;
}

button:hover { 
    text-shadow: rgba(0,255,255,0.552) 0px 0px 15px;
        -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 255, 255, 0.552);
        -moz-box-shadow: 0px 0px 50px 0px  rgba(0, 255, 255, 0.552);
        box-shadow: 0px 0px 50px 0px rgba(0, 255, 255, 0.552);
        padding: 12px 20px;
}
    
.text {
    font-size: 40px;
}

.top {
    display: flex;
    bottom: 45px;
    color:white;
    font-family: 'Roboto', sans-serif;
    font-size: 80px;
    justify-content: space-between;
    height: 120px;
}

body {
    background: linear-gradient(90deg, #1000c6, #9200b3);
    color:white;
    font-family: 'Roboto', sans-serif;
}

#info {
    display: grid;
    grid-template-columns: 120px 120px 120px;
    grid-template-rows: 120px;
}

#title {
    position: relative;
    bottom: 45px;
    color:white;
    font-family: 'Roboto', sans-serif;
    font-size: 80px;
    height: 100%;

}

#pfp {
    width: 110px;
    height: 110px;
    border-radius: 30%;
    grid-column: 1/2;
    
}

.links {
    display: grid;
    grid-template-columns: 120px 120px;
    height: 120px;
}

.git {
    grid-column: 2/3;
    grid-row: 1/2;
}

.disc {
    grid-column: 1/2;
    grid-row: 1/2;
}

.indexbase {
    display: flex;
    flex-direction: row;
    gap: 0px;
}

.buttons {
    display: grid;
    width: 800px;
}

.homebtn {
    width: 95%;
    height: 292px;
    font-size: 110px;
}

html {
    overflow: hidden;
}

hr {
    color: #ffffff;
}

@media (max-width: 768px) {
    .sideimg {
        width: 0%;
    }
  }